aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/rt2x00/rt2x00.h
diff options
context:
space:
mode:
authorIvo van Doorn <ivdoorn@gmail.com>2007-10-06 08:14:29 -0400
committerDavid S. Miller <davem@sunset.davemloft.net>2007-10-10 19:55:12 -0400
commitfeb24691e3e87a740caec4568be1a202db786f20 (patch)
tree76192bf145e989e0e7715a10f0da3c7417cfc254 /drivers/net/wireless/rt2x00/rt2x00.h
parent81873e9ccd5731ca77027bdb32b34904e7af25d0 (diff)
[PATCH] rt2x00: Move TSF sync values into rt2x00config
All drivers use the same values for TSF sync, this will move the value determination into rt2x00config.c, and the definition for the values to rt2x00reg.h Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/rt2x00/rt2x00.h')
-rw-r--r--drivers/net/wireless/rt2x00/rt2x00.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/wireless/rt2x00/rt2x00.h b/drivers/net/wireless/rt2x00/rt2x00.h
index 235e5ad2190..27bec6ec33d 100644
--- a/drivers/net/wireless/rt2x00/rt2x00.h
+++ b/drivers/net/wireless/rt2x00/rt2x00.h
@@ -410,7 +410,8 @@ struct rt2x00lib_ops {
410 */ 410 */
411 void (*config_mac_addr) (struct rt2x00_dev *rt2x00dev, __le32 *mac); 411 void (*config_mac_addr) (struct rt2x00_dev *rt2x00dev, __le32 *mac);
412 void (*config_bssid) (struct rt2x00_dev *rt2x00dev, __le32 *bssid); 412 void (*config_bssid) (struct rt2x00_dev *rt2x00dev, __le32 *bssid);
413 void (*config_type) (struct rt2x00_dev *rt2x00dev, const int type); 413 void (*config_type) (struct rt2x00_dev *rt2x00dev, const int type,
414 const int tsf_sync);
414 void (*config) (struct rt2x00_dev *rt2x00dev, const unsigned int flags, 415 void (*config) (struct rt2x00_dev *rt2x00dev, const unsigned int flags,
415 struct ieee80211_conf *conf); 416 struct ieee80211_conf *conf);
416#define CONFIG_UPDATE_PHYMODE ( 1 << 1 ) 417#define CONFIG_UPDATE_PHYMODE ( 1 << 1 )