projects
/
firefly-linux-kernel-4.4.55.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7125f01
)
ath6kl: fix value of WOW_FILTER_SSID
author
Kalle Valo
<kvalo@qca.qualcomm.com>
Tue, 13 Dec 2011 12:51:47 +0000
(14:51 +0200)
committer
Kalle Valo
<kvalo@qca.qualcomm.com>
Tue, 13 Dec 2011 13:03:47 +0000
(15:03 +0200)
According to the firmware engineers WOW_FILTER_SSID is actually the
second bit, not the first.
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
drivers/net/wireless/ath/ath6kl/wmi.h
patch
|
blob
|
history
diff --git
a/drivers/net/wireless/ath/ath6kl/wmi.h
b/drivers/net/wireless/ath/ath6kl/wmi.h
index 4e4f0f763ae502cca96f17f3cfd5e5c9fa1d2edb..cbde79c5d7cb9c43db43137aa155c9ea020544c8 100644
(file)
--- a/
drivers/net/wireless/ath/ath6kl/wmi.h
+++ b/
drivers/net/wireless/ath/ath6kl/wmi.h
@@
-1808,7
+1808,7
@@
struct wmi_set_ip_cmd {
} __packed;
enum ath6kl_wow_filters {
- WOW_FILTER_SSID = BIT(
0
),
+ WOW_FILTER_SSID = BIT(
1
),
WOW_FILTER_OPTION_MAGIC_PACKET = BIT(2),
WOW_FILTER_OPTION_EAP_REQ = BIT(3),
WOW_FILTER_OPTION_PATTERNS = BIT(4),