8 /* Store the last TX/RX times here for updating the leds. */
10 unsigned long last_rx
;
12 struct acx_interface
{
13 /* Opaque ID of the operating interface (!= monitor
14 * interface) from the ieee80211 subsystem.
20 /* Current BSSID (if any). */
23 /* Interface type. (IEEE80211_IF_TYPE_XXX) */
25 /* Counter of active monitor interfaces. */
27 /* Is the card operating in AP, STA or IBSS mode? */
28 unsigned int operating
:1;
29 /* Promisc mode active?
30 * Note that (monitor != 0) implies promisc.
32 unsigned int promisc
:1;
39 printk(KERN_INFO "TODO: Incomplete code in %s() at %s:%d\n", \
40 __FUNCTION__, __FILE__, __LINE__); \
48 printk(KERN_INFO "FIXME: Possibly broken code in %s() at %s:%d\n", \
49 __FUNCTION__, __FILE__, __LINE__); \
54 #define ACX_MODE_NOTADHOC 0xFFFF
55 #define ACX_MODE_PROMISC 0x5
58 #define ACX_CCK_RATE_1MB 0x02
59 #define ACX_CCK_RATE_2MB 0x04
60 #define ACX_CCK_RATE_5MB 0x0B
61 #define ACX_CCK_RATE_11MB 0x16
62 #define ACX_OFDM_RATE_6MB 0x0C
63 #define ACX_OFDM_RATE_9MB 0x12
64 #define ACX_OFDM_RATE_12MB 0x18
65 #define ACX_OFDM_RATE_18MB 0x24
66 #define ACX_OFDM_RATE_24MB 0x30
67 #define ACX_OFDM_RATE_36MB 0x48
68 #define ACX_OFDM_RATE_48MB 0x60
69 #define ACX_OFDM_RATE_54MB 0x6C
70 extern struct ethtool_ops acx_ethtool_ops
;