Lines Matching defs:rt2x00lib_ops

512 struct rt2x00lib_ops {  struct
516 irq_handler_t irq_handler;
521 void (*txstatus_tasklet) (struct tasklet_struct *t);
522 void (*pretbtt_tasklet) (struct tasklet_struct *t);
523 void (*tbtt_tasklet) (struct tasklet_struct *t);
524 void (*rxdone_tasklet) (struct tasklet_struct *t);
525 void (*autowake_tasklet) (struct tasklet_struct *t);
530 int (*probe_hw) (struct rt2x00_dev *rt2x00dev);
531 char *(*get_firmware_name) (struct rt2x00_dev *rt2x00dev);
532 int (*check_firmware) (struct rt2x00_dev *rt2x00dev,
534 int (*load_firmware) (struct rt2x00_dev *rt2x00dev,
540 int (*initialize) (struct rt2x00_dev *rt2x00dev);
541 void (*uninitialize) (struct rt2x00_dev *rt2x00dev);
546 bool (*get_entry_state) (struct queue_entry *entry);
547 void (*clear_entry) (struct queue_entry *entry);
552 int (*set_device_state) (struct rt2x00_dev *rt2x00dev,
554 int (*rfkill_poll) (struct rt2x00_dev *rt2x00dev);
555 void (*link_stats) (struct rt2x00_dev *rt2x00dev,
557 void (*reset_tuner) (struct rt2x00_dev *rt2x00dev,
559 void (*link_tuner) (struct rt2x00_dev *rt2x00dev,
561 void (*gain_calibration) (struct rt2x00_dev *rt2x00dev);
562 void (*vco_calibration) (struct rt2x00_dev *rt2x00dev);
567 void (*watchdog) (struct rt2x00_dev *rt2x00dev);
568 void (*start_queue) (struct data_queue *queue);
569 void (*kick_queue) (struct data_queue *queue);
570 void (*stop_queue) (struct data_queue *queue);
571 void (*flush_queue) (struct data_queue *queue, bool drop);
572 void (*tx_dma_done) (struct queue_entry *entry);
577 void (*write_tx_desc) (struct queue_entry *entry,
579 void (*write_tx_data) (struct queue_entry *entry,
581 void (*write_beacon) (struct queue_entry *entry,
583 void (*clear_beacon) (struct queue_entry *entry);
584 int (*get_tx_data_len) (struct queue_entry *entry);
589 void (*fill_rxdone) (struct queue_entry *entry,
595 int (*config_shared_key) (struct rt2x00_dev *rt2x00dev,
598 int (*config_pairwise_key) (struct rt2x00_dev *rt2x00dev,
601 void (*config_filter) (struct rt2x00_dev *rt2x00dev,
603 void (*config_intf) (struct rt2x00_dev *rt2x00dev,
611 void (*config_erp) (struct rt2x00_dev *rt2x00dev,
614 void (*config_ant) (struct rt2x00_dev *rt2x00dev,
638 const struct rt2x00lib_ops *lib; argument