diff options
author | Rafał Miłecki <zajec5@gmail.com> | 2011-09-01 01:36:16 +0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-09-13 23:53:45 +0400 |
commit | 0b4ff45d8e0f0f34e18823bd4e144bc324cae4ba (patch) | |
tree | 390bea7fa8a658977960a28a99829dd57cc17939 /drivers/net/wireless/b43/b43.h | |
parent | 5126d97ef5a38df8b24abb7611dcba7e5b729021 (diff) | |
download | linux-0b4ff45d8e0f0f34e18823bd4e144bc324cae4ba.tar.xz |
b43: LCN-PHY: minor fixes
The biggest change is reversing order of reading 32-bit table value.
MMIO dumps has shown it's done that way for LCN-PHY.
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/b43/b43.h')
-rw-r--r-- | drivers/net/wireless/b43/b43.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/wireless/b43/b43.h b/drivers/net/wireless/b43/b43.h index 8ff706289b5d..f8615cdf1075 100644 --- a/drivers/net/wireless/b43/b43.h +++ b/drivers/net/wireless/b43/b43.h @@ -110,6 +110,8 @@ #define B43_MMIO_TSF_CFP_START_LOW 0x604 #define B43_MMIO_TSF_CFP_START_HIGH 0x606 #define B43_MMIO_TSF_CFP_PRETBTT 0x612 +#define B43_MMIO_TSF_CLK_FRAC_LOW 0x62E +#define B43_MMIO_TSF_CLK_FRAC_HIGH 0x630 #define B43_MMIO_TSF_0 0x632 /* core rev < 3 only */ #define B43_MMIO_TSF_1 0x634 /* core rev < 3 only */ #define B43_MMIO_TSF_2 0x636 /* core rev < 3 only */ |