diff options
author | Sujith Manoharan <Sujith.Manoharan@atheros.com> | 2011-05-17 03:11:20 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-05-19 13:53:59 -0400 |
commit | c75197a779b6f5ee4c5b859423a0d5257475ebee (patch) | |
tree | 0fb1835c469cfe606f1f768667a291162902f8ca /drivers | |
parent | 20ba2861b09ae942398eda6d2dc0bf1019a97ddb (diff) |
ath9k_htc: Fix mode selection
Remove all the unsupported modes like FH, TURBO etc.
Since this requires a FW update, increase the fw version to 1.3
Signed-off-by: Sujith Manoharan <Sujith.Manoharan@atheros.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/hif_usb.h | 2 | ||||
-rw-r--r-- | drivers/net/wireless/ath/ath9k/htc.h | 11 | ||||
-rw-r--r-- | drivers/net/wireless/ath/ath9k/htc_drv_main.c | 4 |
3 files changed, 6 insertions, 11 deletions
diff --git a/drivers/net/wireless/ath/ath9k/hif_usb.h b/drivers/net/wireless/ath/ath9k/hif_usb.h index 2bdcdbc14b1e..0d6ff79aac73 100644 --- a/drivers/net/wireless/ath/ath9k/hif_usb.h +++ b/drivers/net/wireless/ath/ath9k/hif_usb.h | |||
@@ -18,7 +18,7 @@ | |||
18 | #define HTC_USB_H | 18 | #define HTC_USB_H |
19 | 19 | ||
20 | #define MAJOR_VERSION_REQ 1 | 20 | #define MAJOR_VERSION_REQ 1 |
21 | #define MINOR_VERSION_REQ 2 | 21 | #define MINOR_VERSION_REQ 3 |
22 | 22 | ||
23 | #define IS_AR7010_DEVICE(_v) (((_v) == AR9280_USB) || ((_v) == AR9287_USB)) | 23 | #define IS_AR7010_DEVICE(_v) (((_v) == AR9280_USB) || ((_v) == AR9287_USB)) |
24 | 24 | ||
diff --git a/drivers/net/wireless/ath/ath9k/htc.h b/drivers/net/wireless/ath/ath9k/htc.h index dfc7a982fc7e..5ec214c37530 100644 --- a/drivers/net/wireless/ath/ath9k/htc.h +++ b/drivers/net/wireless/ath/ath9k/htc.h | |||
@@ -46,15 +46,8 @@ extern struct ieee80211_ops ath9k_htc_ops; | |||
46 | extern int htc_modparam_nohwcrypt; | 46 | extern int htc_modparam_nohwcrypt; |
47 | 47 | ||
48 | enum htc_phymode { | 48 | enum htc_phymode { |
49 | HTC_MODE_AUTO = 0, | 49 | HTC_MODE_11NA = 0, |
50 | HTC_MODE_11A = 1, | 50 | HTC_MODE_11NG = 1 |
51 | HTC_MODE_11B = 2, | ||
52 | HTC_MODE_11G = 3, | ||
53 | HTC_MODE_FH = 4, | ||
54 | HTC_MODE_TURBO_A = 5, | ||
55 | HTC_MODE_TURBO_G = 6, | ||
56 | HTC_MODE_11NA = 7, | ||
57 | HTC_MODE_11NG = 8 | ||
58 | }; | 51 | }; |
59 | 52 | ||
60 | enum htc_opmode { | 53 | enum htc_opmode { |
diff --git a/drivers/net/wireless/ath/ath9k/htc_drv_main.c b/drivers/net/wireless/ath/ath9k/htc_drv_main.c index 5aa104fe7eeb..6065c2fc97f0 100644 --- a/drivers/net/wireless/ath/ath9k/htc_drv_main.c +++ b/drivers/net/wireless/ath/ath9k/htc_drv_main.c | |||
@@ -26,7 +26,7 @@ static enum htc_phymode ath9k_htc_get_curmode(struct ath9k_htc_priv *priv, | |||
26 | { | 26 | { |
27 | enum htc_phymode mode; | 27 | enum htc_phymode mode; |
28 | 28 | ||
29 | mode = HTC_MODE_AUTO; | 29 | mode = -EINVAL; |
30 | 30 | ||
31 | switch (ichan->chanmode) { | 31 | switch (ichan->chanmode) { |
32 | case CHANNEL_G: | 32 | case CHANNEL_G: |
@@ -45,6 +45,8 @@ static enum htc_phymode ath9k_htc_get_curmode(struct ath9k_htc_priv *priv, | |||
45 | break; | 45 | break; |
46 | } | 46 | } |
47 | 47 | ||
48 | WARN_ON(mode < 0); | ||
49 | |||
48 | return mode; | 50 | return mode; |
49 | } | 51 | } |
50 | 52 | ||