aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/rtl8192e/rtl8192e/rtl_wx.h
diff options
context:
space:
mode:
authorJoel Pelaez Jorge <joelpelaez@gmail.com>2014-04-19 22:32:32 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-04-25 15:45:49 -0700
commit5169af2309f42bb4cb0ebfefe6bf8bc888d4ce33 (patch)
tree9b30b2f4cee0c0851f7681b4a4ddfd205d25c235 /drivers/staging/rtl8192e/rtl8192e/rtl_wx.h
parentStaging:rtl8192e:rtl819x_BAProc:Remove whitespaces (diff)
downloadlinux-dev-5169af2309f42bb4cb0ebfefe6bf8bc888d4ce33.tar.xz
linux-dev-5169af2309f42bb4cb0ebfefe6bf8bc888d4ce33.zip
Staging: rtl8192e: Fix declaration of symbols
The two declarations with issues in rtl_wx.h: * function: struct iw_statistics *r8192_get_wireless_stats(); * variable: extern struct iw_handler_def r8192_wx_handlers_def; The symbol 'r8192_get_wireless_stats' is declared as 'extern' but it is only used in the local scope. The declaration is deleted of rtl_wx.h, fixing the conflict with the 'extern' and 'static' scope. The symbol 'r8192_wx_handlers_def' was fixed of some issues related to variable declaration marked as 'extern' implicitly, causing this sparse warning: drivers/staging/rtl8192e/rtl8192e/rtl_wx.c:1323:24: warning: symbol 'r8192_wx_handlers_def' was not declared. Should it be static? Resolved incluing the fixed header to rtl_wx.c Also, isn't declared as constant variable, so it declared as such. And delete unnecessary cast in rtl_core.c. Signed-off-by: Joel Pelaez Jorge <joelpelaez@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rtl8192e/rtl8192e/rtl_wx.h')
-rw-r--r--drivers/staging/rtl8192e/rtl8192e/rtl_wx.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/staging/rtl8192e/rtl8192e/rtl_wx.h b/drivers/staging/rtl8192e/rtl8192e/rtl_wx.h
index 6a51a25ec87d..58398517f5b3 100644
--- a/drivers/staging/rtl8192e/rtl8192e/rtl_wx.h
+++ b/drivers/staging/rtl8192e/rtl8192e/rtl_wx.h
@@ -24,8 +24,7 @@ struct net_device;
struct iw_handler_def;
struct iw_statistics;
-extern struct iw_handler_def r8192_wx_handlers_def;
-struct iw_statistics *r8192_get_wireless_stats(struct net_device *dev);
+extern const struct iw_handler_def r8192_wx_handlers_def;
u16 rtl8192_11n_user_show_rates(struct net_device *dev);
#endif