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