mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-13 21:09:25 -04:00
staging: wfx: update filtering even if not connected
Currently, filtering are not update if the device is not connected. There is no obvious rationale for that. Updating filtering while it is not necessary is harmless. On the other hand, it is difficult to ensure that the filtering rule has been correctly sent to the firmware. Just drop this useless condition. Signed-off-by: Jérôme Pouiller <jerome.pouiller@silabs.com> Link: https://lore.kernel.org/r/20200415161147.69738-2-Jerome.Pouiller@silabs.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
ce92032666
commit
427fd02e16
@@ -168,9 +168,6 @@ void wfx_update_filtering(struct wfx_vif *wvif)
|
||||
}
|
||||
};
|
||||
|
||||
if (wvif->state == WFX_STATE_PASSIVE)
|
||||
return;
|
||||
|
||||
if (wvif->disable_beacon_filter) {
|
||||
bf_enable = 0;
|
||||
bf_count = 1;
|
||||
|
||||
Reference in New Issue
Block a user