staging: rtl8187se: Fix indent in switch statement.
authorAna Rey <anarey@gmail.com>
Mon, 17 Mar 2014 20:22:26 +0000 (21:22 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 18 Mar 2014 17:15:54 +0000 (10:15 -0700)
Fix indent in switch statement in ieee80211/ieee80211_wx.c.

Fix checkpatch.pl error:
ERROR: switch and case should be at the same indent.

Signed-off-by: Ana Rey <anarey@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8187se/ieee80211/ieee80211_wx.c

index 35a486f..6009d81 100644 (file)
@@ -627,7 +627,7 @@ int ieee80211_wx_set_mlme(struct ieee80211_device *ieee,
        case IW_MLME_DISASSOC:
                ieee80211_disassociate(ieee);
                break;
-        default:
+       default:
                return -EOPNOTSUPP;
        }
 #endif