Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f3734ee6 authored by Dan Williams's avatar Dan Williams Committed by John W. Linville
Browse files

make net/ieee80211.h private to ipw2x00



Only ipw2x00 now uses it.  Reduce confusion.  Profit!

Signed-off-by: default avatarDan Williams <dcbw@redhat.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 1ea893fd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -186,7 +186,7 @@ config LIBIPW_DEBUG
	  % echo 0x00000FFO > /proc/net/ieee80211/debug_level

	  For a list of values you can assign to debug_level, you
	  can look at the bit mask values in <net/ieee80211.h>
	  can look at the bit mask values in ieee80211.h

	  If you are not trying to debug or develop the libipw
	  component, you most likely want to say N here.
+2 −2
Original line number Diff line number Diff line
@@ -39,8 +39,6 @@
#include <linux/wireless.h>
#include <net/iw_handler.h>	// new driver API

#include <net/ieee80211.h>

#ifdef CONFIG_IPW2100_MONITOR
#include <net/ieee80211_radiotap.h>
#endif
@@ -48,6 +46,8 @@
#include <linux/workqueue.h>
#include <linux/mutex.h>

#include "ieee80211.h"

struct ipw2100_priv;
struct ipw2100_tx_packet;
struct ipw2100_rx_packet;
+2 −1
Original line number Diff line number Diff line
@@ -49,13 +49,14 @@
#include <asm/io.h>

#include <net/lib80211.h>
#include <net/ieee80211.h>
#include <net/ieee80211_radiotap.h>

#define DRV_NAME	"ipw2200"

#include <linux/workqueue.h>

#include "ieee80211.h"

/* Authentication  and Association States */
enum connection_manager_assoc_states {
	CMAS_INIT = 0,
+1 −1
Original line number Diff line number Diff line
@@ -41,7 +41,7 @@
#include <linux/etherdevice.h>
#include <asm/uaccess.h>

#include <net/ieee80211.h>
#include "ieee80211.h"

int ieee80211_is_valid_channel(struct ieee80211_device *ieee, u8 channel)
{
Loading