Commit 8a8bc5a4 authored by Vasanthakumar Thiagarajan's avatar Vasanthakumar Thiagarajan Committed by Kalle Valo

ath6kl: Use ath6kl_cfg80211_scan_node() directly instead of function pointer

Signed-off-by: default avatarVasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
Signed-off-by: default avatarKalle Valo <kvalo@qca.qualcomm.com>
parent 77fccc78
...@@ -721,7 +721,7 @@ static inline bool is_ch_11a(u16 ch) ...@@ -721,7 +721,7 @@ static inline bool is_ch_11a(u16 ch)
} }
/* struct ath6kl_node_table::nt_nodelock is locked when calling this */ /* struct ath6kl_node_table::nt_nodelock is locked when calling this */
static void ath6kl_cfg80211_scan_node(void *arg, struct bss *ni) void ath6kl_cfg80211_scan_node(void *arg, struct bss *ni)
{ {
struct wiphy *wiphy = (struct wiphy *)arg; struct wiphy *wiphy = (struct wiphy *)arg;
u16 size; u16 size;
...@@ -833,8 +833,7 @@ void ath6kl_cfg80211_scan_complete_event(struct ath6kl *ar, int status) ...@@ -833,8 +833,7 @@ void ath6kl_cfg80211_scan_complete_event(struct ath6kl *ar, int status)
} }
/* Translate data to cfg80211 mgmt format */ /* Translate data to cfg80211 mgmt format */
wlan_iterate_nodes(&ar->scan_table, ath6kl_cfg80211_scan_node, wlan_iterate_nodes(&ar->scan_table, ar->wdev->wiphy);
ar->wdev->wiphy);
cfg80211_scan_done(ar->scan_req, false); cfg80211_scan_done(ar->scan_req, false);
......
...@@ -151,9 +151,7 @@ struct bss *wlan_find_node(struct ath6kl_node_table *nt, ...@@ -151,9 +151,7 @@ struct bss *wlan_find_node(struct ath6kl_node_table *nt,
const u8 *mac_addr); const u8 *mac_addr);
void wlan_node_reclaim(struct ath6kl_node_table *nt, struct bss *ni); void wlan_node_reclaim(struct ath6kl_node_table *nt, struct bss *ni);
void wlan_free_allnodes(struct ath6kl_node_table *nt); void wlan_free_allnodes(struct ath6kl_node_table *nt);
void wlan_iterate_nodes(struct ath6kl_node_table *nt, void wlan_iterate_nodes(struct ath6kl_node_table *nt, void *arg);
void (*f) (void *arg, struct bss *),
void *arg);
void wlan_node_table_init(struct ath6kl_node_table *nt); void wlan_node_table_init(struct ath6kl_node_table *nt);
void wlan_node_table_cleanup(struct ath6kl_node_table *nt); void wlan_node_table_cleanup(struct ath6kl_node_table *nt);
...@@ -179,4 +177,5 @@ struct ath6kl *ath6kl_core_alloc(struct device *sdev); ...@@ -179,4 +177,5 @@ struct ath6kl *ath6kl_core_alloc(struct device *sdev);
int ath6kl_core_init(struct ath6kl *ar); int ath6kl_core_init(struct ath6kl *ar);
int ath6kl_unavail_ev(struct ath6kl *ar); int ath6kl_unavail_ev(struct ath6kl *ar);
struct sk_buff *ath6kl_buf_alloc(int size); struct sk_buff *ath6kl_buf_alloc(int size);
void ath6kl_cfg80211_scan_node(void *arg, struct bss *ni);
#endif /* COMMON_H */ #endif /* COMMON_H */
...@@ -146,15 +146,14 @@ void wlan_free_allnodes(struct ath6kl_node_table *nt) ...@@ -146,15 +146,14 @@ void wlan_free_allnodes(struct ath6kl_node_table *nt)
wlan_node_reclaim(nt, ni); wlan_node_reclaim(nt, ni);
} }
void wlan_iterate_nodes(struct ath6kl_node_table *nt, void wlan_iterate_nodes(struct ath6kl_node_table *nt, void *arg)
void (*f) (void *arg, struct bss *), void *arg)
{ {
struct bss *ni; struct bss *ni;
spin_lock_bh(&nt->nt_nodelock); spin_lock_bh(&nt->nt_nodelock);
for (ni = nt->nt_node_first; ni; ni = ni->ni_list_next) { for (ni = nt->nt_node_first; ni; ni = ni->ni_list_next) {
ni->ni_refcnt++; ni->ni_refcnt++;
(*f) (arg, ni); ath6kl_cfg80211_scan_node(arg, ni);
wlan_node_dec_free(ni); wlan_node_dec_free(ni);
} }
spin_unlock_bh(&nt->nt_nodelock); spin_unlock_bh(&nt->nt_nodelock);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment