Commit 16ec1a20 authored by sanjeev sharma's avatar sanjeev sharma Committed by Greg Kroah-Hartman

staging: rtl8192u: Fixed switch and case indentation error

This patch will fix switch and case indentation Error
reported by checkpatch script.
Signed-off-by: default avatarSanjeev Sharma <Sanjeev_Sharma@mentor.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 97f9402a
......@@ -946,12 +946,12 @@ void rtl8192_phy_RFConfig(struct net_device *dev)
struct r8192_priv *priv = ieee80211_priv(dev);
switch (priv->rf_chip) {
case RF_8256:
PHY_RF8256_Config(dev);
break;
default:
RT_TRACE(COMP_ERR, "error chip id\n");
break;
case RF_8256:
PHY_RF8256_Config(dev);
break;
default:
RT_TRACE(COMP_ERR, "error chip id\n");
break;
}
}
......
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