diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-10-13 22:41:37 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-10-13 22:41:37 +0000 |
commit | c512b90fd4a2ad52ae326c3d14acde457e9831c3 (patch) | |
tree | db35bfa142a4e8a06e5ec0e1bec025917b37fb70 /package/b43/src/tables.h | |
parent | 479bafd63370af4ac157d74a8666867e8b41caf2 (diff) | |
download | upstream-c512b90fd4a2ad52ae326c3d14acde457e9831c3.tar.gz upstream-c512b90fd4a2ad52ae326c3d14acde457e9831c3.tar.bz2 upstream-c512b90fd4a2ad52ae326c3d14acde457e9831c3.zip |
add b43
SVN-Revision: 9293
Diffstat (limited to 'package/b43/src/tables.h')
-rw-r--r-- | package/b43/src/tables.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/package/b43/src/tables.h b/package/b43/src/tables.h new file mode 100644 index 0000000000..64635d7b51 --- /dev/null +++ b/package/b43/src/tables.h @@ -0,0 +1,28 @@ +#ifndef B43_TABLES_H_ +#define B43_TABLES_H_ + +#define B43_TAB_ROTOR_SIZE 53 +extern const u32 b43_tab_rotor[]; +#define B43_TAB_RETARD_SIZE 53 +extern const u32 b43_tab_retard[]; +#define B43_TAB_FINEFREQA_SIZE 256 +extern const u16 b43_tab_finefreqa[]; +#define B43_TAB_FINEFREQG_SIZE 256 +extern const u16 b43_tab_finefreqg[]; +#define B43_TAB_NOISEA2_SIZE 8 +extern const u16 b43_tab_noisea2[]; +#define B43_TAB_NOISEA3_SIZE 8 +extern const u16 b43_tab_noisea3[]; +#define B43_TAB_NOISEG1_SIZE 8 +extern const u16 b43_tab_noiseg1[]; +#define B43_TAB_NOISEG2_SIZE 8 +extern const u16 b43_tab_noiseg2[]; +#define B43_TAB_NOISESCALEG_SIZE 27 +extern const u16 b43_tab_noisescaleg1[]; +extern const u16 b43_tab_noisescaleg2[]; +extern const u16 b43_tab_noisescaleg3[]; +#define B43_TAB_SIGMASQR_SIZE 53 +extern const u16 b43_tab_sigmasqr1[]; +extern const u16 b43_tab_sigmasqr2[]; + +#endif /* B43_TABLES_H_ */ |