Lines Matching defs:atmel_private
428 struct atmel_private { struct
429 void *card; /* Bus dependent stucture varies for PCcard */
430 int (*present_callback)(void *); /* And callback which uses it */
431 char firmware_id[32];
432 unsigned char *firmware;
433 int firmware_length;
434 struct timer_list management_timer;
435 struct net_device *dev;
436 struct iw_statistics wstats;
437 struct net_device_stats stats; // device stats
438 spinlock_t irqlock, timerlock; // spinlocks
439 enum { BUS_TYPE_PCCARD, BUS_TYPE_PCI } bus_type;
440 enum {
444 } card_type;
445 int is3com; /* is this a 3com card? they are uniquely borken */
446 int do_rx_crc; /* If we need to CRC incoming packets */
447 int probe_crc; /* set if we don't yet know */
448 int crc_ok_cnt, crc_ko_cnt; /* counters for probing */
449 u16 rx_desc_head;
450 u16 tx_desc_free, tx_desc_head, tx_desc_tail, tx_desc_previous;
451 u16 tx_free_mem, tx_buff_head, tx_buff_tail;
453 u16 frag_seq, frag_len, frag_no;
454 u8 frag_source[6];
456 int wep_key_len[4]; /* need to know these and not stored in Mib. */
457 struct { /* NB this is matched to the hardware, don't change. */
469 } wep;
471 u16 host_info_base;
472 struct host_info_struct {
499 } host_info;
501 enum {
514 } station_state;
516 int operating_mode, power_mode;
517 time_t last_qual;
518 int beacons_this_sec;
519 int channel;
520 int reg_domain;
521 int tx_rate;
522 int auto_tx_rate;;
523 int rts_threshold;
524 int frag_threshold;
525 int long_retry, short_retry;
526 int preamble;
527 int default_beacon_period, beacon_period, listen_interval;
528 int CurrentAuthentTransactionSeqNum, ExpectedAuthentTransactionSeqNum;
529 int AuthenticationRequestRetryCnt, AssociationRequestRetryCnt, ReAssociationRequestRetryCnt;
530 enum {
534 } site_survey_state;
535 time_t last_survey;
537 int station_was_associated, station_is_associated;
538 int fast_scan;
540 struct bss_info {
568 static int atmel_lock_mac(struct atmel_private *priv); argument