mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-01-05 08:20:44 -05:00
hostap: Remove set but unused variable 'hostscan'
Fixes the following W=1 kernel build warning(s): drivers/net/wireless/intersil/hostap/hostap_ioctl.c: In function ‘prism2_translate_scan’: drivers/net/wireless/intersil/hostap/hostap_ioctl.c:1958:13: warning: variable ‘hostscan’ set but not used [-Wunused-but-set-variable] Cc: Jouni Malinen <j@w1.fi> Cc: Kalle Valo <kvalo@codeaurora.org> Cc: "David S. Miller" <davem@davemloft.net> Cc: Jakub Kicinski <kuba@kernel.org> Cc: linux-wireless@vger.kernel.org Cc: netdev@vger.kernel.org Signed-off-by: Lee Jones <lee.jones@linaro.org> Signed-off-by: Kalle Valo <kvalo@codeaurora.org> Link: https://lore.kernel.org/r/20200819072402.3085022-29-lee.jones@linaro.org
This commit is contained in:
@@ -1955,7 +1955,7 @@ static inline int prism2_translate_scan(local_info_t *local,
|
||||
char *buffer, int buflen)
|
||||
{
|
||||
struct hfa384x_hostscan_result *scan;
|
||||
int entry, hostscan;
|
||||
int entry;
|
||||
char *current_ev = buffer;
|
||||
char *end_buf = buffer + buflen;
|
||||
struct list_head *ptr;
|
||||
@@ -1968,7 +1968,6 @@ static inline int prism2_translate_scan(local_info_t *local,
|
||||
bss->included = 0;
|
||||
}
|
||||
|
||||
hostscan = local->last_scan_type == PRISM2_HOSTSCAN;
|
||||
for (entry = 0; entry < local->last_scan_results_count; entry++) {
|
||||
int found = 0;
|
||||
scan = &local->last_scan_results[entry];
|
||||
|
||||
Reference in New Issue
Block a user