Message ID | fa8a77df4638cf21720d8c5094afb83475947843.1479950323.git.kirtika@google.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 70d740598713cb6164e9b6b4ccd03ea3101377cd |
Delegated to: | Kalle Valo |
Headers | show |
Kirtika Ruchandani <kirtika.ruchandani@gmail.com> wrote: > Commit bec568ff5107 removed the last remaining usage of struct > mwifiex_private* priv in mwifiex_fw_dpc(), by removing the call to > mwifiex_del_virtual_intf(). > Compiling mwifiex/ with W=1 gives the following warning, fix it. > mwifiex/main.c: In function ‘mwifiex_fw_dpc’: > mwifiex/main.c:520:26: warning: variable ‘priv’ set but not used [-Wunused-but-set-variable] > > Fixes: bec568ff5107 ("mwifiex: failure path handling in mwifiex_add_virtual_intf()") > Cc: Amitkumar Karwar <akarwar@marvell.com> > Signed-off-by: Kirtika Ruchandani <kirtika@google.com> 7 patches applied to wireless-drivers-next.git, thanks. 70d740598713 mwifiex: Removed unused mwifiex_private* 'priv' variable 8ac9134161d9 mwifiex: Remove unused 'chan_num' variable 2c2bcabf02e1 mwifiex: Remove unused 'sta_ptr' variable 60261b266a84 mwifiex: Remove unused 'adapter'variable e9f1db8b6859 mwifiex: Remove unused 'pm_flag' variable 67dd2a754906 mwifiex: Removed unused 'pkt_type' variable 4133828c76c3 mwifiex: Remove unused 'bcd_usb' variable
diff --git a/drivers/net/wireless/marvell/mwifiex/main.c b/drivers/net/wireless/marvell/mwifiex/main.c index eac44fe..e5c3a8a 100644 --- a/drivers/net/wireless/marvell/mwifiex/main.c +++ b/drivers/net/wireless/marvell/mwifiex/main.c @@ -518,7 +518,6 @@ static void mwifiex_fw_dpc(const struct firmware *firmware, void *context) { int ret; char fmt[64]; - struct mwifiex_private *priv; struct mwifiex_adapter *adapter = context; struct mwifiex_fw_image fw; bool init_failed = false; @@ -576,8 +575,6 @@ static void mwifiex_fw_dpc(const struct firmware *firmware, void *context) goto err_init_fw; } - priv = adapter->priv[MWIFIEX_BSS_ROLE_STA]; - if (!adapter->wiphy) { if (mwifiex_register_cfg80211(adapter)) { mwifiex_dbg(adapter, ERROR,
Commit bec568ff5107 removed the last remaining usage of struct mwifiex_private* priv in mwifiex_fw_dpc(), by removing the call to mwifiex_del_virtual_intf(). Compiling mwifiex/ with W=1 gives the following warning, fix it. mwifiex/main.c: In function ‘mwifiex_fw_dpc’: mwifiex/main.c:520:26: warning: variable ‘priv’ set but not used [-Wunused-but-set-variable] Fixes: bec568ff5107 ("mwifiex: failure path handling in mwifiex_add_virtual_intf()") Cc: Amitkumar Karwar <akarwar@marvell.com> Signed-off-by: Kirtika Ruchandani <kirtika@google.com> --- drivers/net/wireless/marvell/mwifiex/main.c | 3 --- 1 file changed, 3 deletions(-)