tables.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef B43_TABLES_H_
  3. #define B43_TABLES_H_
  4. #define B43_TAB_ROTOR_SIZE 53
  5. extern const u32 b43_tab_rotor[];
  6. #define B43_TAB_RETARD_SIZE 53
  7. extern const u32 b43_tab_retard[];
  8. #define B43_TAB_FINEFREQA_SIZE 256
  9. extern const u16 b43_tab_finefreqa[];
  10. #define B43_TAB_FINEFREQG_SIZE 256
  11. extern const u16 b43_tab_finefreqg[];
  12. #define B43_TAB_NOISEA2_SIZE 8
  13. extern const u16 b43_tab_noisea2[];
  14. #define B43_TAB_NOISEA3_SIZE 8
  15. extern const u16 b43_tab_noisea3[];
  16. #define B43_TAB_NOISEG1_SIZE 8
  17. extern const u16 b43_tab_noiseg1[];
  18. #define B43_TAB_NOISEG2_SIZE 8
  19. extern const u16 b43_tab_noiseg2[];
  20. #define B43_TAB_NOISESCALE_SIZE 27
  21. extern const u16 b43_tab_noisescalea2[];
  22. extern const u16 b43_tab_noisescalea3[];
  23. extern const u16 b43_tab_noisescaleg1[];
  24. extern const u16 b43_tab_noisescaleg2[];
  25. extern const u16 b43_tab_noisescaleg3[];
  26. #define B43_TAB_SIGMASQR_SIZE 53
  27. extern const u16 b43_tab_sigmasqr1[];
  28. extern const u16 b43_tab_sigmasqr2[];
  29. #define B43_TAB_RSSIAGC1_SIZE 16
  30. extern const u16 b43_tab_rssiagc1[];
  31. #define B43_TAB_RSSIAGC2_SIZE 48
  32. extern const u16 b43_tab_rssiagc2[];
  33. #endif /* B43_TABLES_H_ */