projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
fix avr32 compiling
[openwrt.git]
/
package
/
b43
/
src
/
main.h
diff --git
a/package/b43/src/main.h
b/package/b43/src/main.h
index
284d17d
..
2d52d9d
100644
(file)
--- a/
package/b43/src/main.h
+++ b/
package/b43/src/main.h
@@
-3,7
+3,7
@@
Broadcom B43 wireless driver
Copyright (c) 2005 Martin Langer <martin-langer@gmx.de>,
Broadcom B43 wireless driver
Copyright (c) 2005 Martin Langer <martin-langer@gmx.de>,
- Stefano Brivio <st
3@riseup.ne
t>
+ Stefano Brivio <st
efano.brivio@polimi.i
t>
Michael Buesch <mb@bu3sch.de>
Danny van Dyk <kugelfang@gentoo.org>
Andreas Jaggi <andreas.jaggi@waterwave.ch>
Michael Buesch <mb@bu3sch.de>
Danny van Dyk <kugelfang@gentoo.org>
Andreas Jaggi <andreas.jaggi@waterwave.ch>
@@
-39,11
+39,11
@@
#define PAD_BYTES(nr_bytes) P4D_BYTES( __LINE__ , (nr_bytes))
/* Lightweight function to convert a frequency (in Mhz) to a channel number. */
#define PAD_BYTES(nr_bytes) P4D_BYTES( __LINE__ , (nr_bytes))
/* Lightweight function to convert a frequency (in Mhz) to a channel number. */
-static inline u8 b43_freq_to_channel_
a
(int freq)
+static inline u8 b43_freq_to_channel_
5ghz
(int freq)
{
return ((freq - 5000) / 5);
}
{
return ((freq - 5000) / 5);
}
-static inline u8 b43_freq_to_channel_
bg
(int freq)
+static inline u8 b43_freq_to_channel_
2ghz
(int freq)
{
u8 channel;
{
u8 channel;
@@
-54,19
+54,13
@@
static inline u8 b43_freq_to_channel_bg(int freq)
return channel;
}
return channel;
}
-static inline u8 b43_freq_to_channel(struct b43_wldev *dev, int freq)
-{
- if (dev->phy.type == B43_PHYTYPE_A)
- return b43_freq_to_channel_a(freq);
- return b43_freq_to_channel_bg(freq);
-}
/* Lightweight function to convert a channel number to a frequency (in Mhz). */
/* Lightweight function to convert a channel number to a frequency (in Mhz). */
-static inline int b43_channel_to_freq_
a
(u8 channel)
+static inline int b43_channel_to_freq_
5ghz
(u8 channel)
{
return (5000 + (5 * channel));
}
{
return (5000 + (5 * channel));
}
-static inline int b43_channel_to_freq_
bg
(u8 channel)
+static inline int b43_channel_to_freq_
2ghz
(u8 channel)
{
int freq;
{
int freq;
@@
-77,12
+71,6
@@
static inline int b43_channel_to_freq_bg(u8 channel)
return freq;
}
return freq;
}
-static inline int b43_channel_to_freq(struct b43_wldev *dev, u8 channel)
-{
- if (dev->phy.type == B43_PHYTYPE_A)
- return b43_channel_to_freq_a(channel);
- return b43_channel_to_freq_bg(channel);
-}
static inline int b43_is_cck_rate(int rate)
{
static inline int b43_is_cck_rate(int rate)
{
@@
-96,6
+84,9
@@
static inline int b43_is_ofdm_rate(int rate)
return !b43_is_cck_rate(rate);
}
return !b43_is_cck_rate(rate);
}
+u8 b43_ieee80211_antenna_sanitize(struct b43_wldev *dev,
+ u8 antenna_nr);
+
void b43_tsf_read(struct b43_wldev *dev, u64 * tsf);
void b43_tsf_write(struct b43_wldev *dev, u64 tsf);
void b43_tsf_read(struct b43_wldev *dev, u64 * tsf);
void b43_tsf_write(struct b43_wldev *dev, u64 tsf);
This page took
0.028024 seconds
and
4
git commands to generate.