Skip to content

Commit

Permalink
staging: rtl8192u: remove space after reference '&' in r8192U_core.c
Browse files Browse the repository at this point in the history
This patch fixes the following checkpatch error:
ERROR: space prohibited after that '&'

Signed-off-by: Xenia Ragiadakou <burzalodowa@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Xenia Ragiadakou authored and Greg Kroah-Hartman committed Jun 5, 2013
1 parent 15f6d3a commit 003a2d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/staging/rtl8192u/r8192U_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -1376,7 +1376,7 @@ void rtl8192_config_rate(struct net_device *dev, u16 *rate_config)
struct r8192_priv *priv = ieee80211_priv(dev);
struct ieee80211_network *net;
u8 i = 0, basic_rate = 0;
net = & priv->ieee80211->current_network;
net = &priv->ieee80211->current_network;

for (i = 0; i < net->rates_len; i++) {
basic_rate = net->rates[i]&0x7f;
Expand Down Expand Up @@ -1447,7 +1447,7 @@ void rtl8192_net_update(struct net_device *dev)
struct ieee80211_network *net;
u16 BcnTimeCfg = 0, BcnCW = 6, BcnIFS = 0xf;
u16 rate_config = 0;
net = & priv->ieee80211->current_network;
net = &priv->ieee80211->current_network;

rtl8192_config_rate(dev, &rate_config);
priv->basic_rate = rate_config &= 0x15f;
Expand Down

0 comments on commit 003a2d1

Please sign in to comment.