diff options
Diffstat (limited to 'drivers/net/wireless/rt2x00/rt2x00lib.h')
| -rw-r--r-- | drivers/net/wireless/rt2x00/rt2x00lib.h | 52 | 
1 files changed, 32 insertions, 20 deletions
diff --git a/drivers/net/wireless/rt2x00/rt2x00lib.h b/drivers/net/wireless/rt2x00/rt2x00lib.h index be2e37fb407..dc5c6574aaf 100644 --- a/drivers/net/wireless/rt2x00/rt2x00lib.h +++ b/drivers/net/wireless/rt2x00/rt2x00lib.h @@ -27,11 +27,10 @@  #ifndef RT2X00LIB_H  #define RT2X00LIB_H -#include "rt2x00dump.h" -  /*   * Interval defines   */ +#define WATCHDOG_INTERVAL	round_jiffies_relative(HZ)  #define LINK_TUNE_INTERVAL	round_jiffies_relative(HZ)  /* @@ -107,13 +106,6 @@ struct sk_buff *rt2x00queue_alloc_rxskb(struct rt2x00_dev *rt2x00dev,  					struct queue_entry *entry);  /** - * rt2x00queue_unmap_skb - Unmap a skb from DMA. - * @rt2x00dev: Pointer to &struct rt2x00_dev. - * @skb: The skb to unmap. - */ -void rt2x00queue_unmap_skb(struct rt2x00_dev *rt2x00dev, struct sk_buff *skb); - -/**   * rt2x00queue_free_skb - free a skb   * @rt2x00dev: Pointer to &struct rt2x00_dev.   * @skb: The skb to free. @@ -266,11 +258,30 @@ void rt2x00link_stop_tuner(struct rt2x00_dev *rt2x00dev);  void rt2x00link_reset_tuner(struct rt2x00_dev *rt2x00dev, bool antenna);  /** - * rt2x00link_register - Initialize link tuning functionality + * rt2x00link_start_watchdog - Start periodic watchdog monitoring + * @rt2x00dev: Pointer to &struct rt2x00_dev. + * + * This start the watchdog periodic work, this work will + *be executed periodically until &rt2x00link_stop_watchdog has + * been called. + */ +void rt2x00link_start_watchdog(struct rt2x00_dev *rt2x00dev); + +/** + * rt2x00link_stop_watchdog - Stop periodic watchdog monitoring   * @rt2x00dev: Pointer to &struct rt2x00_dev.   * - * Initialize work structure and all link tuning related - * parameters. This will not start the link tuning process itself. + * After this function completed the watchdog monitoring will not + * be running until &rt2x00link_start_watchdog is called. + */ +void rt2x00link_stop_watchdog(struct rt2x00_dev *rt2x00dev); + +/** + * rt2x00link_register - Initialize link tuning & watchdog functionality + * @rt2x00dev: Pointer to &struct rt2x00_dev. + * + * Initialize work structure and all link tuning and watchdog related + * parameters. This will not start the periodic work itself.   */  void rt2x00link_register(struct rt2x00_dev *rt2x00dev); @@ -296,8 +307,6 @@ static inline void rt2x00lib_free_firmware(struct rt2x00_dev *rt2x00dev)  #ifdef CONFIG_RT2X00_LIB_DEBUGFS  void rt2x00debug_register(struct rt2x00_dev *rt2x00dev);  void rt2x00debug_deregister(struct rt2x00_dev *rt2x00dev); -void rt2x00debug_dump_frame(struct rt2x00_dev *rt2x00dev, -			    enum rt2x00_dump_type type, struct sk_buff *skb);  void rt2x00debug_update_crypto(struct rt2x00_dev *rt2x00dev,  			       struct rxdone_entry_desc *rxdesc);  #else @@ -309,12 +318,6 @@ static inline void rt2x00debug_deregister(struct rt2x00_dev *rt2x00dev)  {  } -static inline void rt2x00debug_dump_frame(struct rt2x00_dev *rt2x00dev, -					  enum rt2x00_dump_type type, -					  struct sk_buff *skb) -{ -} -  static inline void rt2x00debug_update_crypto(struct rt2x00_dev *rt2x00dev,  					     struct rxdone_entry_desc *rxdesc)  { @@ -384,12 +387,21 @@ static inline void rt2x00crypto_rx_insert_iv(struct sk_buff *skb,  void rt2x00ht_create_tx_descriptor(struct queue_entry *entry,  				   struct txentry_desc *txdesc,  				   const struct rt2x00_rate *hwrate); + +u16 rt2x00ht_center_channel(struct rt2x00_dev *rt2x00dev, +			    struct ieee80211_conf *conf);  #else  static inline void rt2x00ht_create_tx_descriptor(struct queue_entry *entry,  						 struct txentry_desc *txdesc,  						 const struct rt2x00_rate *hwrate)  {  } + +static inline u16 rt2x00ht_center_channel(struct rt2x00_dev *rt2x00dev, +					  struct ieee80211_conf *conf) +{ +	return conf->channel->hw_value; +}  #endif /* CONFIG_RT2X00_LIB_HT */  /*  |