Lines Matching defs:rt2x00lib_ops

521 struct rt2x00lib_ops {  struct
525 irq_handler_t irq_handler;
530 void (*txstatus_tasklet) (struct tasklet_struct *t);
531 void (*pretbtt_tasklet) (struct tasklet_struct *t);
532 void (*tbtt_tasklet) (struct tasklet_struct *t);
533 void (*rxdone_tasklet) (struct tasklet_struct *t);
534 void (*autowake_tasklet) (struct tasklet_struct *t);
539 int (*probe_hw) (struct rt2x00_dev *rt2x00dev);
540 char *(*get_firmware_name) (struct rt2x00_dev *rt2x00dev);
541 int (*check_firmware) (struct rt2x00_dev *rt2x00dev,
543 int (*load_firmware) (struct rt2x00_dev *rt2x00dev,
549 int (*initialize) (struct rt2x00_dev *rt2x00dev);
550 void (*uninitialize) (struct rt2x00_dev *rt2x00dev);
555 bool (*get_entry_state) (struct queue_entry *entry);
556 void (*clear_entry) (struct queue_entry *entry);
561 int (*set_device_state) (struct rt2x00_dev *rt2x00dev,
563 int (*rfkill_poll) (struct rt2x00_dev *rt2x00dev);
564 void (*link_stats) (struct rt2x00_dev *rt2x00dev,
566 void (*reset_tuner) (struct rt2x00_dev *rt2x00dev,
568 void (*link_tuner) (struct rt2x00_dev *rt2x00dev,
570 void (*gain_calibration) (struct rt2x00_dev *rt2x00dev);
571 void (*vco_calibration) (struct rt2x00_dev *rt2x00dev);
576 void (*watchdog) (struct rt2x00_dev *rt2x00dev);
577 void (*start_queue) (struct data_queue *queue);
578 void (*kick_queue) (struct data_queue *queue);
579 void (*stop_queue) (struct data_queue *queue);
580 void (*flush_queue) (struct data_queue *queue, bool drop);
581 void (*tx_dma_done) (struct queue_entry *entry);
586 void (*write_tx_desc) (struct queue_entry *entry,
588 void (*write_tx_data) (struct queue_entry *entry,
590 void (*write_beacon) (struct queue_entry *entry,
592 void (*clear_beacon) (struct queue_entry *entry);
593 int (*get_tx_data_len) (struct queue_entry *entry);
598 void (*fill_rxdone) (struct queue_entry *entry,
604 int (*config_shared_key) (struct rt2x00_dev *rt2x00dev,
607 int (*config_pairwise_key) (struct rt2x00_dev *rt2x00dev,
610 void (*config_filter) (struct rt2x00_dev *rt2x00dev,
612 void (*config_intf) (struct rt2x00_dev *rt2x00dev,
620 void (*config_erp) (struct rt2x00_dev *rt2x00dev,
623 void (*config_ant) (struct rt2x00_dev *rt2x00dev,
647 const struct rt2x00lib_ops *lib; argument