staging: rtl8192u: Fix indentation problems
authorLoïc Pellegrino <oort10@gmail.com>
Sun, 6 Apr 2014 13:03:39 +0000 (14:03 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 25 Apr 2014 22:37:55 +0000 (15:37 -0700)
Fix coding style problems (incorrect indentation).

Signed-off-by: Loïc Pellegrino <oort10@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8192u/r8190_rtl8256.c

index 40b14a2d1cdb29bb44b7bc1eb36e3d1910f95f50..08e1bc90555abb5d61abfae924807daef7b0d971 100644 (file)
@@ -32,7 +32,7 @@ void PHY_SetRF8256Bandwidth(struct net_device *dev , HT_CHANNEL_WIDTH Bandwidth)
        for(eRFPath = 0; eRFPath <RF90_PATH_MAX; eRFPath++)
        {
                if (!rtl8192_phy_CheckIsLegalRFPath(dev, eRFPath))
-                               continue;
+                       continue;
 
                switch (Bandwidth)
                {
@@ -125,7 +125,7 @@ void phy_RF8256_Config_ParaFile(struct net_device *dev)
        for(eRFPath = (RF90_RADIO_PATH_E)RF90_PATH_A; eRFPath <priv->NumTotalRFPath; eRFPath++)
        {
                if (!rtl8192_phy_CheckIsLegalRFPath(dev, eRFPath))
-                               continue;
+                       continue;
 
                pPhyReg = &priv->PHYRegDef[eRFPath];
 
@@ -249,7 +249,7 @@ void PHY_SetRF8256CCKTxPower(struct net_device *dev, u8 powerlevel)
                if(priv->CustomerID == RT_CID_819x_Netcore)
                        TxAGC = 0x22;
                else
-               TxAGC += priv->CckPwEnl;
+                       TxAGC += priv->CckPwEnl;
        }
 
        if(TxAGC > 0x24)
This page took 0.025683 seconds and 5 git commands to generate.