ath6kl: Cleanup void *parent_dev in struct wmi

Signed-off-by: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
This commit is contained in:
Vasanthakumar Thiagarajan 2011-07-21 12:00:49 +05:30 committed by Kalle Valo
parent 37ca633507
commit 2865785e96
3 changed files with 4 additions and 4 deletions

View file

@ -1053,7 +1053,7 @@ static int ath6kl_init(struct net_device *dev)
/* Indicate that WMI is enabled (although not ready yet) */
set_bit(WMI_ENABLED, &ar->flag);
ar->wmi = ath6kl_wmi_init((void *) ar);
ar->wmi = ath6kl_wmi_init(ar);
if (!ar->wmi) {
ath6kl_err("failed to initialize wmi\n");
status = -EIO;

View file

@ -2724,7 +2724,7 @@ static void ath6kl_wmi_qos_state_init(struct wmi *wmi)
spin_unlock_bh(&wmi->lock);
}
void *ath6kl_wmi_init(void *dev)
void *ath6kl_wmi_init(struct ath6kl *dev)
{
struct wmi *wmi;

View file

@ -114,7 +114,7 @@ struct wmi {
bool ready;
u16 stream_exist_for_ac[WMM_NUM_AC];
u8 fat_pipe_exist;
void *parent_dev;
struct ath6kl *parent_dev;
struct wmi_stats stat;
struct ath6kl_node_table scan_table;
u8 bssid[ETH_ALEN];
@ -2018,7 +2018,7 @@ int ath6kl_wmi_set_pvb_cmd(struct wmi *wmi, u16 aid, bool flag);
int ath6kl_wmi_set_rx_frame_format_cmd(struct wmi *wmi, u8 rx_meta_version,
bool rx_dot11_hdr, bool defrag_on_host);
void *ath6kl_wmi_init(void *devt);
void *ath6kl_wmi_init(struct ath6kl *devt);
void ath6kl_wmi_shutdown(struct wmi *wmi);
#endif /* WMI_H */