• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/wireless/ath/ar9170/

Lines Matching refs:ar9170

87 struct ar9170;
90 struct ar9170 *ar;
126 struct ar9170 {
134 int (*open)(struct ar9170 *);
135 void (*stop)(struct ar9170 *);
136 int (*tx)(struct ar9170 *, struct sk_buff *);
137 int (*exec_cmd)(struct ar9170 *, enum ar9170_cmd, u32 ,
139 void (*callback_cmd)(struct ar9170 *, u32 , void *);
140 int (*flush)(struct ar9170 *);
214 #define IS_STARTED(a) (((struct ar9170 *)a)->state >= AR9170_STARTED)
215 #define IS_ACCEPTING_CMD(a) (((struct ar9170 *)a)->state >= AR9170_IDLE)
219 int ar9170_register(struct ar9170 *ar, struct device *pdev);
220 void ar9170_rx(struct ar9170 *ar, struct sk_buff *skb);
221 void ar9170_unregister(struct ar9170 *ar);
222 void ar9170_tx_callback(struct ar9170 *ar, struct sk_buff *skb);
223 void ar9170_handle_command_response(struct ar9170 *ar, void *buf, u32 len);
224 int ar9170_nag_limiter(struct ar9170 *ar);
228 int ar9170_init_mac(struct ar9170 *ar);
229 int ar9170_set_qos(struct ar9170 *ar);
230 int ar9170_update_multicast(struct ar9170 *ar, const u64 mc_hast);
231 int ar9170_update_frame_filter(struct ar9170 *ar, const u32 filter);
232 int ar9170_set_operating_mode(struct ar9170 *ar);
233 int ar9170_set_beacon_timers(struct ar9170 *ar);
234 int ar9170_set_dyn_sifs_ack(struct ar9170 *ar);
235 int ar9170_set_slot_time(struct ar9170 *ar);
236 int ar9170_set_basic_rates(struct ar9170 *ar);
237 int ar9170_set_hwretry_limit(struct ar9170 *ar, u32 max_retry);
238 int ar9170_update_beacon(struct ar9170 *ar);
240 int ar9170_upload_key(struct ar9170 *ar, u8 id, const u8 *mac, u8 ktype,
242 int ar9170_disable_key(struct ar9170 *ar, u8 id);
246 int ar9170_register_leds(struct ar9170 *ar);
247 void ar9170_unregister_leds(struct ar9170 *ar);
249 int ar9170_init_leds(struct ar9170 *ar);
250 int ar9170_set_leds_state(struct ar9170 *ar, u32 led_state);
253 int ar9170_init_phy(struct ar9170 *ar, enum ieee80211_band band);
254 int ar9170_init_rf(struct ar9170 *ar);
255 int ar9170_set_channel(struct ar9170 *ar, struct ieee80211_channel *channel,