Go to the documentation of this file. 1 #ifndef B43_TABLES_PHY_LCN_H_
2 #define B43_TABLES_PHY_LCN_H_
5 #define B43_LCNTAB_TYPEMASK 0xF0000000
6 #define B43_LCNTAB_8BIT 0x10000000
7 #define B43_LCNTAB_16BIT 0x20000000
8 #define B43_LCNTAB_32BIT 0x30000000
9 #define B43_LCNTAB8(table, offset) (((table) << 10) | (offset) | B43_LCNTAB_8BIT)
10 #define B43_LCNTAB16(table, offset) (((table) << 10) | (offset) | B43_LCNTAB_16BIT)
11 #define B43_LCNTAB32(table, offset) (((table) << 10) | (offset) | B43_LCNTAB_32BIT)
13 #define B43_LCNTAB_TX_GAIN_SIZE 128
17 unsigned int nr_elements,
void *_data);
20 unsigned int nr_elements,
const void *_data);