mirror of https://gitee.com/openkylin/linux.git
ath6kl: Cleanup parameters of wlan_node_table_init()
Signed-off-by: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com> Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
This commit is contained in:
parent
46ff8d5978
commit
9d0c6bcf46
|
@ -155,7 +155,7 @@ void wlan_iterate_nodes(struct ath6kl_node_table *nt,
|
|||
void (*f) (void *arg, struct bss *),
|
||||
void *arg);
|
||||
|
||||
void wlan_node_table_init(void *wmip, 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_refresh_inactive_nodes(struct ath6kl *ar);
|
||||
|
|
|
@ -160,7 +160,7 @@ void wlan_iterate_nodes(struct ath6kl_node_table *nt,
|
|||
spin_unlock_bh(&nt->nt_nodelock);
|
||||
}
|
||||
|
||||
void wlan_node_table_init(void *wmi, struct ath6kl_node_table *nt)
|
||||
void wlan_node_table_init(struct ath6kl_node_table *nt)
|
||||
{
|
||||
ath6kl_dbg(ATH6KL_DBG_WLAN_NODE, "node table = 0x%lx\n",
|
||||
(unsigned long)nt);
|
||||
|
|
|
@ -2727,7 +2727,7 @@ void *ath6kl_wmi_init(struct ath6kl *dev)
|
|||
|
||||
wmi->parent_dev = dev;
|
||||
|
||||
wlan_node_table_init(wmi, &dev->scan_table);
|
||||
wlan_node_table_init(&dev->scan_table);
|
||||
ath6kl_wmi_qos_state_init(wmi);
|
||||
|
||||
wmi->pwr_mode = REC_POWER;
|
||||
|
|
Loading…
Reference in New Issue