Lines Matching defs:atmel_private

439 struct atmel_private {  struct
440 void *card; /* Bus dependent structure varies for PCcard */
441 int (*present_callback)(void *); /* And callback which uses it */
442 char firmware_id[32];
443 AtmelFWType firmware_type;
444 u8 *firmware;
445 int firmware_length;
446 struct timer_list management_timer;
447 struct net_device *dev;
448 struct device *sys_dev;
449 struct iw_statistics wstats;
450 spinlock_t irqlock, timerlock; /* spinlocks */
451 enum { BUS_TYPE_PCCARD, BUS_TYPE_PCI } bus_type;
452 enum {
456 } card_type;
457 int do_rx_crc; /* If we need to CRC incoming packets */
458 int probe_crc; /* set if we don't yet know */
459 int crc_ok_cnt, crc_ko_cnt; /* counters for probing */
460 u16 rx_desc_head;
461 u16 tx_desc_free, tx_desc_head, tx_desc_tail, tx_desc_previous;
462 u16 tx_free_mem, tx_buff_head, tx_buff_tail;
464 u16 frag_seq, frag_len, frag_no;
465 u8 frag_source[6];
467 u8 wep_is_on, default_key, exclude_unencrypted, encryption_level;
468 u8 group_cipher_suite, pairwise_cipher_suite;
469 u8 wep_keys[MAX_ENCRYPTION_KEYS][MAX_ENCRYPTION_KEY_SIZE];
470 int wep_key_len[MAX_ENCRYPTION_KEYS];
471 int use_wpa, radio_on_broken; /* firmware dependent stuff. */
473 u16 host_info_base;
474 struct host_info_struct {
501 } host_info;
503 enum {
512 } station_state;
514 int operating_mode, power_mode;
515 unsigned long last_qual;
516 int beacons_this_sec;
517 int channel;
518 int reg_domain, config_reg_domain;
519 int tx_rate;
520 int auto_tx_rate;
521 int rts_threshold;
522 int frag_threshold;
523 int long_retry, short_retry;
524 int preamble;
525 int default_beacon_period, beacon_period, listen_interval;
526 int CurrentAuthentTransactionSeqNum, ExpectedAuthentTransactionSeqNum;
527 int AuthenticationRequestRetryCnt, AssociationRequestRetryCnt, ReAssociationRequestRetryCnt;
528 enum {
532 } site_survey_state;
533 unsigned long last_survey;
535 int station_was_associated, station_is_associated;
536 int fast_scan;
538 struct bss_info {
548 } BSSinfo[MAX_BSS_ENTRIES];
549 int BSS_list_entries, current_BSS;
573 static void build_wpa_mib(struct atmel_private *priv); argument