Explorar o código

qcacld-3.0: Format specifies type does not match

The [-Werror,-Wformat] compiler option is enabled,
Format specifies type does not match the argument
type.

Fix the compiler errors that format specifies type
does not match the argument type.

Change-Id: I66c4834693c41217f1263e8d23e9e291f7045c55
CRs-Fixed: 3089460
abhinav kumar %!s(int64=3) %!d(string=hai) anos
pai
achega
1d06f37092

+ 5 - 5
components/cmn_services/policy_mgr/src/wlan_policy_mgr_core.c

@@ -4090,10 +4090,10 @@ void policy_mgr_add_sap_mandatory_chan(struct wlan_objmgr_psoc *psoc,
 			return;
 	}
 	if (pm_ctx->sap_mandatory_channels_len >= NUM_CHANNELS) {
-		policy_mgr_err("mand list overflow (%hu)", ch_freq);
+		policy_mgr_err("mand list overflow (%u)", ch_freq);
 		return;
 	}
-	policy_mgr_debug("Ch freq: %hu", ch_freq);
+	policy_mgr_debug("Ch freq: %u", ch_freq);
 	pm_ctx->sap_mandatory_channels[pm_ctx->sap_mandatory_channels_len++]
 		= ch_freq;
 }
@@ -4157,7 +4157,7 @@ void  policy_mgr_add_sap_mandatory_6ghz_chan(struct wlan_objmgr_psoc *psoc)
 			if (status != QDF_STATUS_SUCCESS || !tx_power)
 				continue;
 
-			policy_mgr_debug("Add chan %hu to mandatory list",
+			policy_mgr_debug("Add chan %u to mandatory list",
 					 ch_freq_list[i]);
 			pm_ctx->sap_mandatory_channels[
 				pm_ctx->sap_mandatory_channels_len++] =
@@ -4206,7 +4206,7 @@ policy_mgr_init_sap_mandatory_chan_by_band(struct wlan_objmgr_psoc *psoc,
 	pm_ctx->sap_mandatory_channels_len = 0;
 	for (i = 0; (i < len) && (i < NUM_CHANNELS); i++) {
 		if (WLAN_REG_IS_24GHZ_CH_FREQ(ch_freq_list[i])) {
-			policy_mgr_debug("Add chan %hu to mandatory list",
+			policy_mgr_debug("Add chan %u to mandatory list",
 					ch_freq_list[i]);
 			pm_ctx->sap_mandatory_channels[
 				pm_ctx->sap_mandatory_channels_len++] =
@@ -4225,7 +4225,7 @@ void  policy_mgr_init_sap_mandatory_chan(struct wlan_objmgr_psoc *psoc,
 					 uint32_t org_ch_freq)
 {
 	if (WLAN_REG_IS_5GHZ_CH_FREQ(org_ch_freq)) {
-		policy_mgr_debug("channel %hu, sap mandatory chan list enabled",
+		policy_mgr_debug("channel %u, sap mandatory chan list enabled",
 				 org_ch_freq);
 		policy_mgr_init_sap_mandatory_chan_by_band(
 			psoc, BIT(REG_BAND_2G) | BIT(REG_BAND_5G));

+ 1 - 1
core/hdd/src/wlan_hdd_power.c

@@ -2998,7 +2998,7 @@ static int __wlan_hdd_cfg80211_set_txpower(struct wiphy *wiphy,
 
 	status = ucfg_mlme_set_current_tx_power_level(hdd_ctx->psoc, dbm);
 	if (QDF_IS_STATUS_ERROR(status)) {
-		hdd_err("sme_cfg_set_int failed for tx power %hu, %d",
+		hdd_err("sme_cfg_set_int failed for tx power %d, %d",
 			dbm, status);
 		return -EIO;
 	}

+ 2 - 1
core/mac/src/pe/lim/lim_process_tdls.c

@@ -1,5 +1,6 @@
 /*
  * Copyright (c) 2012-2021 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2021 Qualcomm Innovation Center, Inc. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -780,7 +781,7 @@ static void populate_dot11f_tdls_ht_vht_cap(struct mac_context *mac,
 		/* Vht Disable from ini in 2.4 GHz */
 		vhtCap->present = 0;
 	}
-	pe_debug("VHT present: %hu, Chan Width: %hu",
+	pe_debug("VHT present: %hu, Chan Width: %u",
 		 vhtCap->present, vhtCap->supportedChannelWidthSet);
 }