Commit 31bd9b21 authored by John Whitmore's avatar John Whitmore Committed by Greg Kroah-Hartman

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: default avatarJohn Whitmore <johnfwhitmore@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 009cf451
...@@ -109,7 +109,7 @@ struct net_device *alloc_ieee80211(int sizeof_priv) ...@@ -109,7 +109,7 @@ struct net_device *alloc_ieee80211(int sizeof_priv)
} }
ieee = netdev_priv(dev); 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; ieee->dev = dev;
err = ieee80211_networks_allocate(ieee); err = ieee80211_networks_allocate(ieee);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment