* [PATCH V2] staging: wilc1000: fix incorrent type in initializer
@ 2019-02-27 14:52 Bo YU
0 siblings, 0 replies; only message in thread
From: Bo YU @ 2019-02-27 14:52 UTC (permalink / raw)
To: adham.abozaeid, ajay.kathat, gregkh
Cc: Bo YU, linux-wireless, devel, linux-kernel, yuzibode
Fix sparse warning:
drivers/staging/wilc1000//host_interface.c:444:49: warning: incorrect type in initializer (different address spaces)
drivers/staging/wilc1000//host_interface.c:444:49: expected struct cfg80211_bss_ies const *ies
drivers/staging/wilc1000//host_interface.c:444:49: got struct cfg80211_bss_ies const [noderef] <asn:4> *ies
Signed-off-by: Bo YU <tsu.yubo@gmail.com>
---
V2: Adding cc wireless-list
---
drivers/staging/wilc1000/host_interface.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c
index 20349af2ed30..4dd9a20f6a0b 100644
--- a/drivers/staging/wilc1000/host_interface.c
+++ b/drivers/staging/wilc1000/host_interface.c
@@ -441,7 +441,7 @@ void *wilc_parse_join_bss_param(struct cfg80211_bss *bss,
const u8 *tim_elm, *ssid_elm, *rates_ie, *supp_rates_ie;
const u8 *ht_ie, *wpa_ie, *wmm_ie, *rsn_ie;
int ret;
- const struct cfg80211_bss_ies *ies = bss->ies;
+ const struct cfg80211_bss_ies *ies = rcu_dereference(bss->ies);
param = kzalloc(sizeof(*param), GFP_KERNEL);
if (!param)
--
2.11.0
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2019-02-27 14:52 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-02-27 14:52 [PATCH V2] staging: wilc1000: fix incorrent type in initializer Bo YU
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox