Skip to content

Commit

Permalink
staging/rtl8187se: Fix spacing coding style in ieee80211/ieee80211_so…
Browse files Browse the repository at this point in the history
…ftmac_wx.c

The following wanings fixed.
- WARNING: braces {} are not necessary for any arm of this statement

Signed-off-by: YAMANE Toshiaki <yamanetoshi@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
YAMANE Toshiaki authored and Greg Kroah-Hartman committed Nov 27, 2012
1 parent f553a75 commit 6ed8419
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions drivers/staging/rtl8187se/ieee80211/ieee80211_softmac_wx.c
Original file line number Diff line number Diff line change
Expand Up @@ -218,11 +218,11 @@ int ieee80211_wx_set_rate(struct ieee80211_device *ieee,
u32 target_rate = wrqu->bitrate.value;

//added by lizhaoming for auto mode
if (target_rate == -1) {
if (target_rate == -1)
ieee->rate = 110;
} else {
else
ieee->rate = target_rate/100000;
}

//FIXME: we might want to limit rate also in management protocols.
return 0;
}
Expand Down Expand Up @@ -250,12 +250,10 @@ int ieee80211_wx_set_mode(struct ieee80211_device *ieee, struct iw_request_info
if (wrqu->mode == ieee->iw_mode)
goto out;

if (wrqu->mode == IW_MODE_MONITOR) {

if (wrqu->mode == IW_MODE_MONITOR)
ieee->dev->type = ARPHRD_IEEE80211;
} else {
else
ieee->dev->type = ARPHRD_ETHER;
}

if (!ieee->proto_started) {
ieee->iw_mode = wrqu->mode;
Expand Down

0 comments on commit 6ed8419

Please sign in to comment.