Go to the documentation of this file. 1 #ifndef B43_TABLES_LPPHY_H_
2 #define B43_TABLES_LPPHY_H_
5 #define B43_LPTAB_TYPEMASK 0xF0000000
6 #define B43_LPTAB_8BIT 0x10000000
7 #define B43_LPTAB_16BIT 0x20000000
8 #define B43_LPTAB_32BIT 0x30000000
9 #define B43_LPTAB8(table, offset) (((table) << 10) | (offset) | B43_LPTAB_8BIT)
10 #define B43_LPTAB16(table, offset) (((table) << 10) | (offset) | B43_LPTAB_16BIT)
11 #define B43_LPTAB32(table, offset) (((table) << 10) | (offset) | B43_LPTAB_32BIT)
14 #define B43_LPTAB_TXPWR_R2PLUS B43_LPTAB32(0x07, 0)
15 #define B43_LPTAB_TXPWR_R0_1 B43_LPTAB32(0xA0, 0)
24 unsigned int nr_elements,
void *
data);
26 unsigned int nr_elements,
const void *
data);