Browse Source

qcacld-3.0: Rename HDD identifier padapter

The Linux Coding Style frowns upon so-called Hungarian notation so
rename HDD identifier padapter to be compliant.

Change-Id: I5fcc20ea16f088b4ec0001425b069a14ecf9c4d8
CRs-Fixed: 2427177
Jeff Johnson 6 years ago
parent
commit
a1382385ce
2 changed files with 16 additions and 16 deletions
  1. 8 0
      core/hdd/inc/wlan_hdd_main.h
  2. 8 16
      core/hdd/src/wlan_hdd_main.c

+ 8 - 0
core/hdd/inc/wlan_hdd_main.h

@@ -3274,6 +3274,14 @@ static inline
 void hdd_dp_trace_init(struct hdd_config *config) {}
 #endif
 
+/**
+ * hdd_set_rx_mode_rps() - Enable/disable RPS in SAP mode
+ * @enable: Set true to enable RPS in SAP mode
+ *
+ * Callback function registered with datapath
+ *
+ * Return: none
+ */
 void hdd_set_rx_mode_rps(bool enable);
 
 /**

+ 8 - 16
core/hdd/src/wlan_hdd_main.c

@@ -6166,7 +6166,7 @@ void hdd_update_hlp_info(struct net_device *dev,
 	uint16_t hlp_data_len;
 	struct fils_join_rsp_params *roam_fils_params
 				= roam_info->fils_join_rsp;
-	struct hdd_adapter *padapter = WLAN_HDD_GET_PRIV_PTR(dev);
+	struct hdd_adapter *adapter = WLAN_HDD_GET_PRIV_PTR(dev);
 
 	if (!roam_fils_params) {
 		hdd_err("FILS Roam Param NULL");
@@ -6211,7 +6211,7 @@ void hdd_update_hlp_info(struct net_device *dev,
 	 */
 	skb->ip_summed = CHECKSUM_UNNECESSARY;
 
-	status = hdd_rx_packet_cbk(padapter, skb);
+	status = hdd_rx_packet_cbk(adapter, skb);
 	if (QDF_IS_STATUS_ERROR(status)) {
 		hdd_err("Sending HLP packet fails");
 		return;
@@ -6381,9 +6381,9 @@ void hdd_connect_result(struct net_device *dev, const u8 *bssid,
 			bool connect_timeout,
 			tSirResultCodes timeout_reason)
 {
-	struct hdd_adapter *padapter = (struct hdd_adapter *) netdev_priv(dev);
+	struct hdd_adapter *adapter = netdev_priv(dev);
 	struct cfg80211_bss *bss = NULL;
-	struct hdd_context *hdd_ctx = WLAN_HDD_GET_CTX(padapter);
+	struct hdd_context *hdd_ctx = WLAN_HDD_GET_CTX(adapter);
 
 	if (WLAN_STATUS_SUCCESS == status) {
 		struct ieee80211_channel *chan;
@@ -6397,8 +6397,8 @@ void hdd_connect_result(struct net_device *dev, const u8 *bssid,
 			freq = ieee80211_channel_to_frequency(chan_no,
 				HDD_NL80211_BAND_5GHZ);
 
-		chan = ieee80211_get_channel(padapter->wdev.wiphy, freq);
-		bss = wlan_cfg80211_get_bss(padapter->wdev.wiphy, chan, bssid,
+		chan = ieee80211_get_channel(adapter->wdev.wiphy, freq);
+		bss = wlan_cfg80211_get_bss(adapter->wdev.wiphy, chan, bssid,
 			roam_info->u.pConnectedProfile->SSID.ssId,
 			roam_info->u.pConnectedProfile->SSID.length);
 	}
@@ -6423,8 +6423,8 @@ void hdd_connect_result(struct net_device *dev, const u8 *bssid,
 			bool connect_timeout,
 			tSirResultCodes timeout_reason)
 {
-	struct hdd_adapter *padapter = (struct hdd_adapter *) netdev_priv(dev);
-	struct hdd_context *hdd_ctx = WLAN_HDD_GET_CTX(padapter);
+	struct hdd_adapter *adapter = netdev_priv(dev);
+	struct hdd_context *hdd_ctx = WLAN_HDD_GET_CTX(adapter);
 
 	cfg80211_connect_result(dev, bssid, req_ie, req_ie_len,
 				resp_ie, resp_ie_len, status, gfp);
@@ -14965,14 +14965,6 @@ int hdd_reset_limit_off_chan(struct hdd_adapter *adapter)
 	return ret;
 }
 
-/**
- * hdd_set_rx_mode_rps() - Enable/disable RPS in SAP mode
- * @struct hdd_context *hdd_ctx
- * @struct hdd_adapter *padapter
- * @bool enble
- *
- * Return: none
- */
 void hdd_set_rx_mode_rps(bool enable)
 {
 	struct cds_config_info *cds_cfg = cds_get_ini_config();