[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <200704260723.l3Q7NE1I023820@shell0.pdx.osdl.net>
Date: Thu, 26 Apr 2007 00:23:14 -0700
From: akpm@...ux-foundation.org
To: jeff@...zik.org
Cc: netdev@...r.kernel.org, akpm@...ux-foundation.org, dsd@...too.org,
johannes@...solutions.net, josejx@...too.org
Subject: [patch 01/11] git-netdev-all: export ieee80211_debug_level
From: Andrew Morton <akpm@...ux-foundation.org>
Someone has been forgetting their SubmitChecklist medicine.
ERROR: "ieee80211_debug_level" [net/ieee80211/ieee80211_crypt_ccmp.ko] undefined!
Fix some unneeded space-wasting initialisations, too. How often must this be
said?
Cc: Johannes Berg <johannes@...solutions.net>
Cc: Joe Jezak <josejx@...too.org>
Cc: Daniel Drake <dsd@...too.org>
Cc: Jeff Garzik <jeff@...zik.org>
Signed-off-by: Andrew Morton <akpm@...ux-foundation.org>
---
net/ieee80211/ieee80211_module.c | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff -puN net/ieee80211/ieee80211_module.c~git-netdev-all-export-ieee80211_debug_level net/ieee80211/ieee80211_module.c
--- a/net/ieee80211/ieee80211_module.c~git-netdev-all-export-ieee80211_debug_level
+++ a/net/ieee80211/ieee80211_module.c
@@ -227,9 +227,11 @@ void free_ieee80211(struct net_device *d
#ifdef CONFIG_IEEE80211_DEBUG
-static int debug = 0;
-u32 ieee80211_debug_level = 0;
-static struct proc_dir_entry *ieee80211_proc = NULL;
+static int debug;
+u32 ieee80211_debug_level;
+static struct proc_dir_entry *ieee80211_proc;
+
+EXPORT_SYMBOL(ieee80211_debug_level);
static int show_debug_level(char *page, char **start, off_t offset,
int count, int *eof, void *data)
_
-
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists