diff options
-rw-r--r-- | drivers/net/wireless/airo.c | 2 | ||||
-rw-r--r-- | drivers/net/wireless/ray_cs.c | 1 | ||||
-rw-r--r-- | include/linux/wireless.h | 9 | ||||
-rw-r--r-- | net/ieee80211/ieee80211_wx.c | 5 |
4 files changed, 8 insertions, 9 deletions
diff --git a/drivers/net/wireless/airo.c b/drivers/net/wireless/airo.c index 89c2ff9570d5..2be65d308fbe 100644 --- a/drivers/net/wireless/airo.c +++ b/drivers/net/wireless/airo.c | |||
@@ -6867,7 +6867,7 @@ static inline char *airo_translate_scan(struct net_device *dev, | |||
6867 | } else { | 6867 | } else { |
6868 | iwe.u.qual.level = (bss->dBm + 321) / 2; | 6868 | iwe.u.qual.level = (bss->dBm + 321) / 2; |
6869 | iwe.u.qual.qual = 0; | 6869 | iwe.u.qual.qual = 0; |
6870 | iwe.u.qual.updated = IW_QUAL_QUAL_INVALID; | 6870 | iwe.u.qual.updated = IW_QUAL_QUAL_INVALID |
6871 | | IW_QUAL_LEVEL_UPDATED | 6871 | | IW_QUAL_LEVEL_UPDATED |
6872 | | IW_QUAL_DBM; | 6872 | | IW_QUAL_DBM; |
6873 | } | 6873 | } |
diff --git a/drivers/net/wireless/ray_cs.c b/drivers/net/wireless/ray_cs.c index 74d66eeddef2..e9c5ea0f5535 100644 --- a/drivers/net/wireless/ray_cs.c +++ b/drivers/net/wireless/ray_cs.c | |||
@@ -53,6 +53,7 @@ | |||
53 | #include <pcmcia/ds.h> | 53 | #include <pcmcia/ds.h> |
54 | #include <pcmcia/mem_op.h> | 54 | #include <pcmcia/mem_op.h> |
55 | 55 | ||
56 | #include <net/ieee80211.h> | ||
56 | #include <linux/wireless.h> | 57 | #include <linux/wireless.h> |
57 | 58 | ||
58 | #include <asm/io.h> | 59 | #include <asm/io.h> |
diff --git a/include/linux/wireless.h b/include/linux/wireless.h index dab5afdaf71c..a555a0f7a7b4 100644 --- a/include/linux/wireless.h +++ b/include/linux/wireless.h | |||
@@ -69,12 +69,9 @@ | |||
69 | 69 | ||
70 | /***************************** INCLUDES *****************************/ | 70 | /***************************** INCLUDES *****************************/ |
71 | 71 | ||
72 | /* Do not put any header in this file, this creates a mess when | 72 | #include <linux/types.h> /* for "caddr_t" et al */ |
73 | * exported to user space. Most users have included all the | 73 | #include <linux/socket.h> /* for "struct sockaddr" et al */ |
74 | * relevant headers anyway... Jean II */ | 74 | #include <linux/if.h> /* for IFNAMSIZ and co... */ |
75 | /*#include <linux/types.h>*/ /* for "caddr_t" et al */ | ||
76 | /*#include <linux/socket.h>*/ /* for "struct sockaddr" et al */ | ||
77 | /*#include <linux/if.h>*/ /* for IFNAMSIZ and co... */ | ||
78 | 75 | ||
79 | /***************************** VERSION *****************************/ | 76 | /***************************** VERSION *****************************/ |
80 | /* | 77 | /* |
diff --git a/net/ieee80211/ieee80211_wx.c b/net/ieee80211/ieee80211_wx.c index 2cd571c525a9..510a1716a4f0 100644 --- a/net/ieee80211/ieee80211_wx.c +++ b/net/ieee80211/ieee80211_wx.c | |||
@@ -29,12 +29,13 @@ | |||
29 | Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 | 29 | Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 |
30 | 30 | ||
31 | ******************************************************************************/ | 31 | ******************************************************************************/ |
32 | #include <linux/wireless.h> | 32 | |
33 | #include <linux/version.h> | ||
34 | #include <linux/kmod.h> | 33 | #include <linux/kmod.h> |
35 | #include <linux/module.h> | 34 | #include <linux/module.h> |
36 | 35 | ||
37 | #include <net/ieee80211.h> | 36 | #include <net/ieee80211.h> |
37 | #include <linux/wireless.h> | ||
38 | |||
38 | static const char *ieee80211_modes[] = { | 39 | static const char *ieee80211_modes[] = { |
39 | "?", "a", "b", "ab", "g", "ag", "bg", "abg" | 40 | "?", "a", "b", "ab", "g", "ag", "bg", "abg" |
40 | }; | 41 | }; |