diff options
author | David S. Miller <davem@davemloft.net> | 2008-10-07 16:26:38 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-10-07 16:26:38 -0700 |
commit | 075f664689b40217539ebfe856fab73d302a15f1 (patch) | |
tree | 751f96b1c264e103de2119c332f09d1cb6b4fdf0 /net/mac80211/rate.h | |
parent | b8bae41ed6a53cce56c50811a91cd963e3187d1c (diff) | |
parent | ad788b5e079484aa1d48aa90a3ebd7d954d2e7db (diff) |
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-next-2.6
Diffstat (limited to 'net/mac80211/rate.h')
-rw-r--r-- | net/mac80211/rate.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/net/mac80211/rate.h b/net/mac80211/rate.h index eb94e584d24..d0092f847f8 100644 --- a/net/mac80211/rate.h +++ b/net/mac80211/rate.h @@ -125,4 +125,18 @@ static inline void rc80211_pid_exit(void) } #endif +#ifdef CONFIG_MAC80211_RC_MINSTREL +extern int rc80211_minstrel_init(void); +extern void rc80211_minstrel_exit(void); +#else +static inline int rc80211_minstrel_init(void) +{ + return 0; +} +static inline void rc80211_minstrel_exit(void) +{ +} +#endif + + #endif /* IEEE80211_RATE_H */ |