Commit 97bc5aff authored by YAMANE Toshiaki's avatar YAMANE Toshiaki Committed by Greg Kroah-Hartman

staging/rtl8187se: Fix spacing coding style in ieee80211/ieee80211_softmac_wx.c

The following errors fixed.
- ERROR: spaces required around that '=' (ctx:VxV)
Signed-off-by: default avatarYAMANE Toshiaki <yamanetoshi@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 6ed84198
...@@ -337,7 +337,7 @@ int ieee80211_wx_set_essid(struct ieee80211_device *ieee, ...@@ -337,7 +337,7 @@ int ieee80211_wx_set_essid(struct ieee80211_device *ieee,
union iwreq_data *wrqu, char *extra) union iwreq_data *wrqu, char *extra)
{ {
int ret=0, len; int ret = 0, len;
short proto_started; short proto_started;
unsigned long flags; unsigned long flags;
...@@ -348,12 +348,12 @@ int ieee80211_wx_set_essid(struct ieee80211_device *ieee, ...@@ -348,12 +348,12 @@ int ieee80211_wx_set_essid(struct ieee80211_device *ieee,
proto_started = ieee->proto_started; proto_started = ieee->proto_started;
if (wrqu->essid.length > IW_ESSID_MAX_SIZE) { if (wrqu->essid.length > IW_ESSID_MAX_SIZE) {
ret= -E2BIG; ret = -E2BIG;
goto out; goto out;
} }
if (ieee->iw_mode == IW_MODE_MONITOR) { if (ieee->iw_mode == IW_MODE_MONITOR) {
ret= -1; ret = -1;
goto out; goto out;
} }
...@@ -528,7 +528,7 @@ int ieee80211_wx_get_power(struct ieee80211_device *ieee, ...@@ -528,7 +528,7 @@ int ieee80211_wx_get_power(struct ieee80211_device *ieee,
struct iw_request_info *info, struct iw_request_info *info,
union iwreq_data *wrqu, char *extra) union iwreq_data *wrqu, char *extra)
{ {
int ret =0; int ret = 0;
down(&ieee->wx_sem); down(&ieee->wx_sem);
......
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