@@ -73,7 +73,7 @@ Actions and configuration
cfg80211_pmksa
cfg80211_rx_mlme_mgmt
cfg80211_auth_timeout
- cfg80211_rx_assoc_resp
+ cfg80211_rx_assoc_response
cfg80211_assoc_timeout
cfg80211_tx_mlme_mgmt
cfg80211_ibss_joined
@@ -7271,7 +7271,7 @@ void cfg80211_auth_timeout(struct net_device *dev, const u8 *addr);
/**
* struct cfg80211_rx_assoc_resp - association response data
* @bss: the BSS that association was requested with, ownership of the pointer
- * moves to cfg80211 in the call to cfg80211_rx_assoc_resp()
+ * moves to cfg80211 in the call to cfg80211_rx_assoc_response()
* @buf: (Re)Association Response frame (header + body)
* @len: length of the frame data
* @uapsd_queues: bitmap of queues configured for uapsd. Same format
@@ -7299,7 +7299,7 @@ struct cfg80211_rx_assoc_resp {
};
/**
- * cfg80211_rx_assoc_resp - notification of processed association response
+ * cfg80211_rx_assoc_response - notification of processed association response
* @dev: network device
* @data: association response data, &struct cfg80211_rx_assoc_resp
*
@@ -7308,8 +7308,8 @@ struct cfg80211_rx_assoc_resp {
*
* This function may sleep. The caller must hold the corresponding wdev's mutex.
*/
-void cfg80211_rx_assoc_resp(struct net_device *dev,
- struct cfg80211_rx_assoc_resp *data);
+void cfg80211_rx_assoc_response(struct net_device *dev,
+ struct cfg80211_rx_assoc_resp *data);
/**
* struct cfg80211_assoc_failure - association failure data
@@ -5454,7 +5454,7 @@ static void ieee80211_rx_mgmt_assoc_resp(struct ieee80211_sub_if_data *sdata,
resp.len = len;
resp.req_ies = ifmgd->assoc_req_ies;
resp.req_ies_len = ifmgd->assoc_req_ies_len;
- cfg80211_rx_assoc_resp(sdata->dev, &resp);
+ cfg80211_rx_assoc_response(sdata->dev, &resp);
notify_driver:
drv_mgd_complete_tx(sdata->local, sdata, &info);
kfree(elems);
@@ -21,8 +21,8 @@
#include "rdev-ops.h"
-void cfg80211_rx_assoc_resp(struct net_device *dev,
- struct cfg80211_rx_assoc_resp *data)
+void cfg80211_rx_assoc_response(struct net_device *dev,
+ struct cfg80211_rx_assoc_resp *data)
{
struct wireless_dev *wdev = dev->ieee80211_ptr;
struct wiphy *wiphy = wdev->wiphy;
@@ -94,7 +94,7 @@ void cfg80211_rx_assoc_resp(struct net_device *dev,
/* update current_bss etc., consumes the bss reference */
__cfg80211_connect_result(dev, &cr, cr.status == WLAN_STATUS_SUCCESS);
}
-EXPORT_SYMBOL(cfg80211_rx_assoc_resp);
+EXPORT_SYMBOL(cfg80211_rx_assoc_response);
static void cfg80211_process_auth(struct wireless_dev *wdev,
const u8 *buf, size_t len)