diff options
author | Johannes Berg <johannes@sipsolutions.net> | 2006-01-04 20:58:10 +0100 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2006-02-17 10:41:34 -0500 |
commit | b7cffb028abbffff3ba0b87268ecb775ed354049 (patch) | |
tree | e5a4dd1cca31bf38c2a57214ab3d2a9ae1c5e367 /net/ieee80211/ieee80211_module.c | |
parent | 22d8846e5ce329436628da71a4239ccc2745869f (diff) | |
download | kernel-crypto-b7cffb028abbffff3ba0b87268ecb775ed354049.tar.gz kernel-crypto-b7cffb028abbffff3ba0b87268ecb775ed354049.tar.xz kernel-crypto-b7cffb028abbffff3ba0b87268ecb775ed354049.zip |
[PATCH] ieee80211: fix sparse warning about missing "static"
This patch adds a missing "static" on a variable (sparse complaint)
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/ieee80211/ieee80211_module.c')
-rw-r--r-- | net/ieee80211/ieee80211_module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ieee80211/ieee80211_module.c b/net/ieee80211/ieee80211_module.c index 5f67c684afc..2cb84d84f67 100644 --- a/net/ieee80211/ieee80211_module.c +++ b/net/ieee80211/ieee80211_module.c @@ -213,7 +213,7 @@ void free_ieee80211(struct net_device *dev) static int debug = 0; u32 ieee80211_debug_level = 0; -struct proc_dir_entry *ieee80211_proc = NULL; +static struct proc_dir_entry *ieee80211_proc = NULL; static int show_debug_level(char *page, char **start, off_t offset, int count, int *eof, void *data) |