2016-07-22 14:08:28

by Wei Yongjun

[permalink] [raw]
Subject: [PATCH -next] 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 <[email protected]>
---
drivers/net/wireless/ti/wlcore/spi.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/wireless/ti/wlcore/spi.c b/drivers/net/wireless/ti/wlcore/spi.c
index 6d24040..0ed526e 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 {
char name[8];
};

-const struct wilink_familiy_data *wilink_data;
+static const struct wilink_familiy_data *wilink_data;

static const struct wilink_familiy_data wl18xx_data = {
.name = "wl18xx",



2016-09-03 09:55:58

by Kalle Valo

[permalink] [raw]
Subject: Re: [-next] wlcore: spi: fix non static symbol warning

Wei Yongjun <[email protected]> wrote:
> 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 <[email protected]>

Thanks, 1 patch applied to wireless-drivers-next.git:

4ad0579a28c0 wlcore: spi: fix non static symbol warning

--
Sent by pwcli
https://patchwork.kernel.org/patch/9243695/