Lines Matching defs:airo_info
1160 struct airo_info { struct
1161 struct net_device *dev;
1162 struct list_head dev_list;
1167 u32 fids[MAX_FIDS];
1168 ConfigRid config;
1169 char keyindex; // Used with auto wep
1170 char defindex; // Used with auto wep
1171 struct proc_dir_entry *proc_entry;
1172 spinlock_t aux_lock;
1203 int (*bap_read)(struct airo_info*, __le16 *pu16Dst, int bytelen, argument
1205 unsigned short *flash;
1206 tdsRssiEntry *rssi;
1207 struct task_struct *list_bss_task;
1208 struct task_struct *airo_thread_task;
1209 struct semaphore sem;
1210 wait_queue_head_t thr_wait;
1211 unsigned long expires;
1212 struct {
1215 } xmit, xmit11;
1216 struct net_device *wifidev;
1217 struct iw_statistics wstats; // wireless stats
1218 unsigned long scan_timeout; /* Time scan should be read */
1219 struct iw_spy_data spy_data;
1220 struct iw_public_data wireless_data;
1222 struct crypto_sync_skcipher *tfm;
1223 mic_module mod[2];
1224 mic_statistics micstats;
1225 HostRxDesc rxfids[MPI_MAX_FIDS]; // rx/tx/config MPI350 descriptors
1226 HostTxDesc txfids[MPI_MAX_FIDS];
1227 HostRidDesc config_desc;
1228 unsigned long ridbus; // phys addr of config_desc
1229 struct sk_buff_head txq;// tx queue used by mpi350 code
1230 struct pci_dev *pci;
1231 unsigned char __iomem *pcimem;
1255 static inline int bap_read(struct airo_info *ai, __le16 *pu16Dst, int bytelen, in bap_read() argument