mirror of https://gitee.com/openkylin/linux.git
mwifiex: remove redundant variable report_scan_result
This variable is never used, get rid of it. Signed-off-by: Amitkumar Karwar <akarwar@marvell.com> Signed-off-by: Avinash Patil <patila@marvell.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
5ec39efa16
commit
971a73f552
|
@ -548,7 +548,6 @@ struct mwifiex_private {
|
|||
u8 nick_name[16];
|
||||
u16 current_key_index;
|
||||
struct semaphore async_sem;
|
||||
u8 report_scan_result;
|
||||
struct cfg80211_scan_request *scan_request;
|
||||
u8 cfg_bssid[6];
|
||||
struct wps wps;
|
||||
|
|
|
@ -1779,9 +1779,6 @@ static void mwifiex_check_next_scan_command(struct mwifiex_private *priv)
|
|||
if (!adapter->ext_scan)
|
||||
mwifiex_complete_scan(priv);
|
||||
|
||||
if (priv->report_scan_result)
|
||||
priv->report_scan_result = false;
|
||||
|
||||
if (priv->scan_request) {
|
||||
dev_dbg(adapter->dev, "info: notifying scan done\n");
|
||||
cfg80211_scan_done(priv->scan_request, 0);
|
||||
|
|
|
@ -85,8 +85,6 @@ mwifiex_process_cmdresp_error(struct mwifiex_private *priv,
|
|||
spin_lock_irqsave(&adapter->mwifiex_cmd_lock, flags);
|
||||
adapter->scan_processing = false;
|
||||
spin_unlock_irqrestore(&adapter->mwifiex_cmd_lock, flags);
|
||||
if (priv->report_scan_result)
|
||||
priv->report_scan_result = false;
|
||||
break;
|
||||
|
||||
case HostCmd_CMD_MAC_CONTROL:
|
||||
|
|
Loading…
Reference in New Issue