diff options
author | Larry Finger <Larry.Finger@lwfinger.net> | 2007-09-25 19:46:54 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-10 19:51:38 -0400 |
commit | 75388acd0cd827dc1498043daa7d1c760902cd67 (patch) | |
tree | 43fac7501291145963444e439f2ff30b9e5726e3 /drivers/net/wireless/b43legacy/ilt.h | |
parent | e4d6b7951812d98417feb10784e400e253caf633 (diff) |
[B43LEGACY]: add mac80211-based driver for legacy BCM43xx devices
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/wireless/b43legacy/ilt.h')
-rw-r--r-- | drivers/net/wireless/b43legacy/ilt.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/drivers/net/wireless/b43legacy/ilt.h b/drivers/net/wireless/b43legacy/ilt.h new file mode 100644 index 000000000000..48bcf37eccb8 --- /dev/null +++ b/drivers/net/wireless/b43legacy/ilt.h | |||
@@ -0,0 +1,34 @@ | |||
1 | #ifndef B43legacy_ILT_H_ | ||
2 | #define B43legacy_ILT_H_ | ||
3 | |||
4 | #define B43legacy_ILT_ROTOR_SIZE 53 | ||
5 | extern const u32 b43legacy_ilt_rotor[B43legacy_ILT_ROTOR_SIZE]; | ||
6 | #define B43legacy_ILT_RETARD_SIZE 53 | ||
7 | extern const u32 b43legacy_ilt_retard[B43legacy_ILT_RETARD_SIZE]; | ||
8 | #define B43legacy_ILT_FINEFREQA_SIZE 256 | ||
9 | extern const u16 b43legacy_ilt_finefreqa[B43legacy_ILT_FINEFREQA_SIZE]; | ||
10 | #define B43legacy_ILT_FINEFREQG_SIZE 256 | ||
11 | extern const u16 b43legacy_ilt_finefreqg[B43legacy_ILT_FINEFREQG_SIZE]; | ||
12 | #define B43legacy_ILT_NOISEA2_SIZE 8 | ||
13 | extern const u16 b43legacy_ilt_noisea2[B43legacy_ILT_NOISEA2_SIZE]; | ||
14 | #define B43legacy_ILT_NOISEA3_SIZE 8 | ||
15 | extern const u16 b43legacy_ilt_noisea3[B43legacy_ILT_NOISEA3_SIZE]; | ||
16 | #define B43legacy_ILT_NOISEG1_SIZE 8 | ||
17 | extern const u16 b43legacy_ilt_noiseg1[B43legacy_ILT_NOISEG1_SIZE]; | ||
18 | #define B43legacy_ILT_NOISEG2_SIZE 8 | ||
19 | extern const u16 b43legacy_ilt_noiseg2[B43legacy_ILT_NOISEG2_SIZE]; | ||
20 | #define B43legacy_ILT_NOISESCALEG_SIZE 27 | ||
21 | extern const u16 b43legacy_ilt_noisescaleg1[B43legacy_ILT_NOISESCALEG_SIZE]; | ||
22 | extern const u16 b43legacy_ilt_noisescaleg2[B43legacy_ILT_NOISESCALEG_SIZE]; | ||
23 | extern const u16 b43legacy_ilt_noisescaleg3[B43legacy_ILT_NOISESCALEG_SIZE]; | ||
24 | #define B43legacy_ILT_SIGMASQR_SIZE 53 | ||
25 | extern const u16 b43legacy_ilt_sigmasqr1[B43legacy_ILT_SIGMASQR_SIZE]; | ||
26 | extern const u16 b43legacy_ilt_sigmasqr2[B43legacy_ILT_SIGMASQR_SIZE]; | ||
27 | |||
28 | |||
29 | void b43legacy_ilt_write(struct b43legacy_wldev *dev, u16 offset, u16 val); | ||
30 | void b43legacy_ilt_write32(struct b43legacy_wldev *dev, u16 offset, | ||
31 | u32 val); | ||
32 | u16 b43legacy_ilt_read(struct b43legacy_wldev *dev, u16 offset); | ||
33 | |||
34 | #endif /* B43legacy_ILT_H_ */ | ||