1 /* Raytheon wireless LAN PCMCIA card driver for Linux
2 A PCMCIA client driver for the Raylink wireless network card
3 Written by Corey Thomas
10 struct mac_header mac
;
12 UCHAR beacon_intvl
[2];
14 UCHAR elements
[sizeof(struct essid_element
)
15 + sizeof(struct rates_element
)
16 + sizeof(struct freq_hop_element
)
17 + sizeof(struct japan_call_sign_element
)
18 + sizeof(struct tim_element
)];
21 /* Return values for get_free{,_tx}_ccs */
24 #define ECARDGONE (-3)
26 typedef struct ray_dev_t
{
28 int authentication_state
;
29 void __iomem
*sram
; /* pointer to beginning of shared RAM */
30 void __iomem
*amem
; /* pointer to attribute mem window */
31 void __iomem
*rmem
; /* pointer to receive buffer window */
32 struct pcmcia_device
*finder
; /* pointer back to struct pcmcia_device for card */
33 struct timer_list timer
;
34 unsigned long tx_ccs_lock
;
35 unsigned long ccs_lock
;
38 struct b4_startup_params b4
;
39 struct b5_startup_params b5
;
42 UCHAR supported_rates
[8];
43 UCHAR japan_call_sign
[12];
44 struct startup_res_6 startup_res
;
46 /* Network parameters from start/join */
49 UCHAR net_default_tx_rate
;
51 struct net_device_stats stats
;
63 struct beacon_rx last_bcn
;
64 iw_stats wstats
; /* Wireless specific stats */
66 struct iw_spy_data spy_data
;
67 struct iw_public_data wireless_data
;
68 #endif /* WIRELESS_SPY */
71 /*****************************************************************************/
73 #endif /* _RAY_CS_H_ */