diff options
Diffstat (limited to 'net/wireless/scan.c')
-rw-r--r-- | net/wireless/scan.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/net/wireless/scan.c b/net/wireless/scan.c index afde7e5f0010..70faadf16a32 100644 --- a/net/wireless/scan.c +++ b/net/wireless/scan.c | |||
@@ -734,9 +734,8 @@ cfg80211_bss_update(struct cfg80211_registered_device *dev, | |||
734 | struct cfg80211_bss* | 734 | struct cfg80211_bss* |
735 | cfg80211_inform_bss(struct wiphy *wiphy, | 735 | cfg80211_inform_bss(struct wiphy *wiphy, |
736 | struct ieee80211_channel *channel, | 736 | struct ieee80211_channel *channel, |
737 | const u8 *bssid, | 737 | const u8 *bssid, u64 tsf, u16 capability, |
738 | u64 timestamp, u16 capability, u16 beacon_interval, | 738 | u16 beacon_interval, const u8 *ie, size_t ielen, |
739 | const u8 *ie, size_t ielen, | ||
740 | s32 signal, gfp_t gfp) | 739 | s32 signal, gfp_t gfp) |
741 | { | 740 | { |
742 | struct cfg80211_internal_bss *res; | 741 | struct cfg80211_internal_bss *res; |
@@ -758,7 +757,7 @@ cfg80211_inform_bss(struct wiphy *wiphy, | |||
758 | memcpy(res->pub.bssid, bssid, ETH_ALEN); | 757 | memcpy(res->pub.bssid, bssid, ETH_ALEN); |
759 | res->pub.channel = channel; | 758 | res->pub.channel = channel; |
760 | res->pub.signal = signal; | 759 | res->pub.signal = signal; |
761 | res->pub.tsf = timestamp; | 760 | res->pub.tsf = tsf; |
762 | res->pub.beacon_interval = beacon_interval; | 761 | res->pub.beacon_interval = beacon_interval; |
763 | res->pub.capability = capability; | 762 | res->pub.capability = capability; |
764 | /* | 763 | /* |