diff options
author | Johannes Berg <johannes@sipsolutions.net> | 2006-01-04 14:58:10 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2006-02-17 10:41:34 -0500 |
commit | b7cffb028abbffff3ba0b87268ecb775ed354049 (patch) | |
tree | e5a4dd1cca31bf38c2a57214ab3d2a9ae1c5e367 /net/ieee80211 | |
parent | 22d8846e5ce329436628da71a4239ccc2745869f (diff) |
[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')
-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 5f67c684afc2..2cb84d84f671 100644 --- a/net/ieee80211/ieee80211_module.c +++ b/net/ieee80211/ieee80211_module.c | |||
@@ -213,7 +213,7 @@ void free_ieee80211(struct net_device *dev) | |||
213 | 213 | ||
214 | static int debug = 0; | 214 | static int debug = 0; |
215 | u32 ieee80211_debug_level = 0; | 215 | u32 ieee80211_debug_level = 0; |
216 | struct proc_dir_entry *ieee80211_proc = NULL; | 216 | static struct proc_dir_entry *ieee80211_proc = NULL; |
217 | 217 | ||
218 | static int show_debug_level(char *page, char **start, off_t offset, | 218 | static int show_debug_level(char *page, char **start, off_t offset, |
219 | int count, int *eof, void *data) | 219 | int count, int *eof, void *data) |