Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cec3f0ed authored by Johannes Berg's avatar Johannes Berg
Browse files

cfg80211: use __force __rcu to suppress sparse warning



The code assigns a constant value (a pointer to a static variable)
to an RCU pointer, which results in a sparse warning:
  reg.c:112:10: warning: cast adds address space to expression (<asn:4>)

Suppress this warning by using __force.

Signed-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
parent 70e71ca0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -109,7 +109,7 @@ static struct regulatory_request core_request_world = {
 * protected by RTNL (and can be accessed with RCU protection)
 */
static struct regulatory_request __rcu *last_request =
	(void __rcu *)&core_request_world;
	(void __force __rcu *)&core_request_world;

/* To trigger userspace events */
static struct platform_device *reg_pdev;