From: John Whitmore Date: Sun, 7 Oct 2018 21:40:19 +0000 (+0100) Subject: staging:rtl8192u: Add spaces around + operator - Style X-Git-Tag: v5.4-rc1~2324^2~82 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=31bd9b21dcf43ba14146dd7f8f2d43931f732c10;p=platform%2Fkernel%2Flinux-rpi.git staging:rtl8192u: Add spaces around + operator - Style Add spaces around '+' operator to clear the checkpatch issue. This is a coding style change which should have no impact on runtime code execution. Signed-off-by: John Whitmore Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/rtl8192u/ieee80211/ieee80211_module.c b/drivers/staging/rtl8192u/ieee80211/ieee80211_module.c index 962dc66..88db6fc 100644 --- a/drivers/staging/rtl8192u/ieee80211/ieee80211_module.c +++ b/drivers/staging/rtl8192u/ieee80211/ieee80211_module.c @@ -109,7 +109,7 @@ struct net_device *alloc_ieee80211(int sizeof_priv) } ieee = netdev_priv(dev); - memset(ieee, 0, sizeof(struct ieee80211_device)+sizeof_priv); + memset(ieee, 0, sizeof(struct ieee80211_device) + sizeof_priv); ieee->dev = dev; err = ieee80211_networks_allocate(ieee);