Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
tables_phy_ht.h
Go to the documentation of this file.
1 #ifndef B43_TABLES_PHY_HT_H_
2 #define B43_TABLES_PHY_HT_H_
3 
4 /* The HT-PHY tables. */
5 #define B43_HTTAB_TYPEMASK 0xF0000000
6 #define B43_HTTAB_8BIT 0x10000000
7 #define B43_HTTAB_16BIT 0x20000000
8 #define B43_HTTAB_32BIT 0x30000000
9 #define B43_HTTAB8(table, offset) (((table) << 10) | (offset) | B43_HTTAB_8BIT)
10 #define B43_HTTAB16(table, offset) (((table) << 10) | (offset) | B43_HTTAB_16BIT)
11 #define B43_HTTAB32(table, offset) (((table) << 10) | (offset) | B43_HTTAB_32BIT)
12 
15  unsigned int nr_elements, void *_data);
17 void b43_httab_write_few(struct b43_wldev *dev, u32 offset, size_t num, ...);
19  unsigned int nr_elements, const void *_data);
20 
22 
23 #define B43_HTTAB_1A_C0_LATE_SIZE 128
24 extern const u32 b43_httab_0x1a_0xc0_late[];
25 
26 #endif /* B43_TABLES_PHY_HT_H_ */