diff options
author | Senthil Balasubramanian <senthilkumar@atheros.com> | 2011-04-01 17:16:33 +0530 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-04-04 15:22:11 -0400 |
commit | 8f06ca2c83689f4d352a34ef1c484f40c25b41ed (patch) | |
tree | cc0a042236819ca57a297494efcfbc365e709f11 /drivers/net/wireless | |
parent | 5245e3a9f77a8dd4ea92d7bdab2e96629f1feda4 (diff) | |
download | talos-op-linux-8f06ca2c83689f4d352a34ef1c484f40c25b41ed.tar.gz talos-op-linux-8f06ca2c83689f4d352a34ef1c484f40c25b41ed.zip |
ath9k: Fix phy info print message with AR9485 chipset.
The phy information print during driver init time doesn't show
the numeric part of the chip name properly for AR9485. This patch
addresses this issue by adding the string to the respective array.
Signed-off-by: Senthil Balasubramanian <senthilkumar@atheros.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/hw.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/wireless/ath/ath9k/hw.c b/drivers/net/wireless/ath/ath9k/hw.c index 338b07502f1a..1ec9bcd6b281 100644 --- a/drivers/net/wireless/ath/ath9k/hw.c +++ b/drivers/net/wireless/ath/ath9k/hw.c @@ -2546,6 +2546,7 @@ static struct { { AR_SREV_VERSION_9287, "9287" }, { AR_SREV_VERSION_9271, "9271" }, { AR_SREV_VERSION_9300, "9300" }, + { AR_SREV_VERSION_9485, "9485" }, }; /* For devices with external radios */ |