diff options
author | Felix Fietkau <nbd@openwrt.org> | 2011-08-29 15:39:47 +0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-09-13 23:42:31 +0400 |
commit | 3c42e6ef28d89fc2157d4d65869471f607fcf64e (patch) | |
tree | 160c575dba4844f60f9e3f429063e7441461b12b /drivers/net | |
parent | b8b0b974f212798585d397eefe0c81f5ba3c2829 (diff) | |
download | linux-3c42e6ef28d89fc2157d4d65869471f607fcf64e.tar.xz |
ath9k_hw: fix the last register write for ar5416 addac
The previous register used in these initvals was probably accidentally
copied over from the AR9100 values.
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/ar5008_initvals.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/ar5008_initvals.h b/drivers/net/wireless/ath/ath9k/ar5008_initvals.h index 68b0561c6bb8..f81e7fc60a36 100644 --- a/drivers/net/wireless/ath/ath9k/ar5008_initvals.h +++ b/drivers/net/wireless/ath/ath9k/ar5008_initvals.h @@ -669,6 +669,6 @@ static const u32 ar5416Addac[][2] = { {0x0000989c, 0x00000000}, {0x0000989c, 0x00000000}, {0x0000989c, 0x00000000}, - {0x000098cc, 0x00000000}, + {0x000098c4, 0x00000000}, }; |