diff options
author | Holger Schurig <hs4233@mail.mn-solutions.de> | 2008-01-28 11:27:03 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-02-29 15:19:11 -0500 |
commit | 23ff50361f23355334bffe33de84f0b52aa34b9d (patch) | |
tree | e5abd652bc791e8d3445b33e7fed0c8b394be6ab /drivers/net/wireless/libertas/scan.c | |
parent | e226868ec3f3f98544ed2e6e7af7b6b8a629f492 (diff) |
libertas: make lbs_unset_basic_rate_flags() static
... by moving it into the file where it's sole user resides
Signed-off-by: Holger Schurig <hs4233@mail.mn-solutions.de>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/libertas/scan.c')
-rw-r--r-- | drivers/net/wireless/libertas/scan.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/drivers/net/wireless/libertas/scan.c b/drivers/net/wireless/libertas/scan.c index 69f94c92b32d..37b9684bf29c 100644 --- a/drivers/net/wireless/libertas/scan.c +++ b/drivers/net/wireless/libertas/scan.c | |||
@@ -73,6 +73,23 @@ static const u8 bcastmac[ETH_ALEN] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF }; | |||
73 | /* */ | 73 | /* */ |
74 | /*********************************************************************/ | 74 | /*********************************************************************/ |
75 | 75 | ||
76 | /** | ||
77 | * @brief Unsets the MSB on basic rates | ||
78 | * | ||
79 | * Scan through an array and unset the MSB for basic data rates. | ||
80 | * | ||
81 | * @param rates buffer of data rates | ||
82 | * @param len size of buffer | ||
83 | */ | ||
84 | static void lbs_unset_basic_rate_flags(u8 *rates, size_t len) | ||
85 | { | ||
86 | int i; | ||
87 | |||
88 | for (i = 0; i < len; i++) | ||
89 | rates[i] &= 0x7f; | ||
90 | } | ||
91 | |||
92 | |||
76 | static inline void clear_bss_descriptor (struct bss_descriptor * bss) | 93 | static inline void clear_bss_descriptor (struct bss_descriptor * bss) |
77 | { | 94 | { |
78 | /* Don't blow away ->list, just BSS data */ | 95 | /* Don't blow away ->list, just BSS data */ |