Skip to content

Commit

Permalink
mwifiex: correction in structure name passed to sizeof()
Browse files Browse the repository at this point in the history
"hscfg" is declared as struct mwifiex_ds_hs_cfg. Use same structure
name for calculating it's size.

Signed-off-by: Amitkumar Karwar <akarwar@marvell.com>
Signed-off-by: Bing Zhao <bzhao@marvell.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
  • Loading branch information
Amitkumar Karwar authored and John W. Linville committed Mar 14, 2012
1 parent c65a30f commit b093863
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/wireless/mwifiex/sta_ioctl.c
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ int mwifiex_enable_hs(struct mwifiex_adapter *adapter)

adapter->hs_activate_wait_q_woken = false;

memset(&hscfg, 0, sizeof(struct mwifiex_hs_config_param));
memset(&hscfg, 0, sizeof(struct mwifiex_ds_hs_cfg));
hscfg.is_invoke_hostcmd = true;

if (mwifiex_set_hs_params(mwifiex_get_priv(adapter,
Expand Down

0 comments on commit b093863

Please sign in to comment.