Skip to content

Commit

Permalink
ath6kl: fix value of WOW_FILTER_SSID
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Kalle Valo committed Dec 13, 2011
1 parent 7125f01 commit 75ae3bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/wireless/ath/ath6kl/wmi.h
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down

0 comments on commit 75ae3bc

Please sign in to comment.