diff options
author | Wei Yongjun <weiyj.lk@gmail.com> | 2016-07-22 10:08:08 -0400 |
---|---|---|
committer | Kalle Valo <kvalo@codeaurora.org> | 2016-09-03 05:55:43 -0400 |
commit | 4ad0579a28c0a02613c1d4a53c03ae746f14b0ac (patch) | |
tree | 8df7067bd36a51ce059a2d5c85ada67f9e289b0b /drivers/net/wireless | |
parent | 8432ebd66205ef1e088005ae3738600dedc7d9b4 (diff) |
wlcore: spi: fix non static symbol warning
Fixes the following sparse warning:
drivers/net/wireless/ti/wlcore/spi.c:87:34: warning:
symbol 'wilink_data' was not declared. Should it be static?
Signed-off-by: Wei Yongjun <weiyj.lk@gmail.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Diffstat (limited to 'drivers/net/wireless')
-rw-r--r-- | drivers/net/wireless/ti/wlcore/spi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ti/wlcore/spi.c b/drivers/net/wireless/ti/wlcore/spi.c index 6d24040889b8..0ed526e4c0df 100644 --- a/drivers/net/wireless/ti/wlcore/spi.c +++ b/drivers/net/wireless/ti/wlcore/spi.c | |||
@@ -84,7 +84,7 @@ struct wilink_familiy_data { | |||
84 | char name[8]; | 84 | char name[8]; |
85 | }; | 85 | }; |
86 | 86 | ||
87 | const struct wilink_familiy_data *wilink_data; | 87 | static const struct wilink_familiy_data *wilink_data; |
88 | 88 | ||
89 | static const struct wilink_familiy_data wl18xx_data = { | 89 | static const struct wilink_familiy_data wl18xx_data = { |
90 | .name = "wl18xx", | 90 | .name = "wl18xx", |