aboutsummaryrefslogtreecommitdiffstats
path: root/include/net
diff options
context:
space:
mode:
Diffstat (limited to 'include/net')
-rw-r--r--include/net/cfg80211.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h
index bfd6557946be..727131b67421 100644
--- a/include/net/cfg80211.h
+++ b/include/net/cfg80211.h
@@ -2878,6 +2878,7 @@ void cfg80211_connect_result(struct net_device *dev, const u8 *bssid,
2878 * cfg80211_roamed - notify cfg80211 of roaming 2878 * cfg80211_roamed - notify cfg80211 of roaming
2879 * 2879 *
2880 * @dev: network device 2880 * @dev: network device
2881 * @channel: the channel of the new AP
2881 * @bssid: the BSSID of the new AP 2882 * @bssid: the BSSID of the new AP
2882 * @req_ie: association request IEs (maybe be %NULL) 2883 * @req_ie: association request IEs (maybe be %NULL)
2883 * @req_ie_len: association request IEs length 2884 * @req_ie_len: association request IEs length
@@ -2888,7 +2889,9 @@ void cfg80211_connect_result(struct net_device *dev, const u8 *bssid,
2888 * It should be called by the underlying driver whenever it roamed 2889 * It should be called by the underlying driver whenever it roamed
2889 * from one AP to another while connected. 2890 * from one AP to another while connected.
2890 */ 2891 */
2891void cfg80211_roamed(struct net_device *dev, const u8 *bssid, 2892void cfg80211_roamed(struct net_device *dev,
2893 struct ieee80211_channel *channel,
2894 const u8 *bssid,
2892 const u8 *req_ie, size_t req_ie_len, 2895 const u8 *req_ie, size_t req_ie_len,
2893 const u8 *resp_ie, size_t resp_ie_len, gfp_t gfp); 2896 const u8 *resp_ie, size_t resp_ie_len, gfp_t gfp);
2894 2897