Skip to content

Commit

Permalink
Staging: rtl8187se: space prohibited before semicolon in r8185b_init.c
Browse files Browse the repository at this point in the history
Fix checkpatch.pl issues with space prohibited
before semicolon in r8185b_init.c

Signed-off-by: Ebru Akagunduz <ebru.akagunduz@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Ebru Akagunduz authored and Greg Kroah-Hartman committed Oct 30, 2013
1 parent 28b22e0 commit 238822b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/staging/rtl8187se/r8185b_init.c
Original file line number Diff line number Diff line change
Expand Up @@ -758,7 +758,7 @@ static void HwConfigureRTL8185(struct net_device *dev)
write_nic_byte(dev, OFDM_TXAGC, 128);
val8 = val8 & 0xfe;
} else {
val8 = val8 | 0x01 ;
val8 = val8 | 0x01;
}


Expand Down Expand Up @@ -985,7 +985,7 @@ static void MgntDisconnectIBSS(struct net_device *dev)
struct r8180_priv *priv = (struct r8180_priv *)ieee80211_priv(dev);
u8 i;

for (i = 0; i < 6 ; i++)
for (i = 0; i < 6; i++)
priv->ieee80211->current_network.bssid[i] = 0x55;


Expand Down

0 comments on commit 238822b

Please sign in to comment.