summaryrefslogtreecommitdiff
path: root/drivers/staging/rtl8187se/r8180_wx.c
diff options
context:
space:
mode:
authorTeodora Baluta <teobaluta@gmail.com>2013-10-25 09:00:17 (GMT)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-10-28 21:34:42 (GMT)
commit3717013a64ebbea30d2c1c3e74d211d4660fa01a (patch)
tree5d7451086d2415c866d13ff2e38197b95fcdfa2d /drivers/staging/rtl8187se/r8180_wx.c
parent0fe249a5c80e473d6a0a1ba39457af1a6cb30448 (diff)
downloadlinux-fsl-qoriq-3717013a64ebbea30d2c1c3e74d211d4660fa01a.tar.xz
staging: rtl8187se: fix code allignment
Fix confusingly indented code after if. This patch fixes the following coccinelle issues: drivers/staging/rtl8187se/r8180_wx.c:1148:2-11: code aligned with following code on line 1150 drivers/staging/rtl8187se/r8180_dm.c:668:1-84: code aligned with following code on line 674 drivers/staging/rtl8187se/ieee80211/ieee80211_wx.c:623:2-38: code aligned with following code on line 625 drivers/staging/rtl8187se/ieee80211/ieee80211_wx.c:148:1-85: code aligned with following code on line 149 Signed-off-by: Teodora Baluta <teobaluta@gmail.com> Reviewed-by: Rusty Russell <rusty@rustcorp.com.au> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rtl8187se/r8180_wx.c')
-rw-r--r--drivers/staging/rtl8187se/r8180_wx.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/staging/rtl8187se/r8180_wx.c b/drivers/staging/rtl8187se/r8180_wx.c
index 098e368..4e01653 100644
--- a/drivers/staging/rtl8187se/r8180_wx.c
+++ b/drivers/staging/rtl8187se/r8180_wx.c
@@ -1147,12 +1147,12 @@ static int r8180_wx_set_gen_ie(struct net_device *dev,
if (priv->ieee80211->bHwRadioOff)
return 0;
- down(&priv->wx_sem);
+ down(&priv->wx_sem);
#if 1
- ret = ieee80211_wx_set_gen_ie(priv->ieee80211, extra, wrqu->data.length);
+ ret = ieee80211_wx_set_gen_ie(priv->ieee80211, extra, wrqu->data.length);
#endif
- up(&priv->wx_sem);
- return ret;
+ up(&priv->wx_sem);
+ return ret;
}