Clean up some array declarations in phy_iq_calibrate() to reduce
indentation and clear line over 80 characters checkpatch warnings.

Signed-off-by: Michael Straube <straube.li...@gmail.com>
---
v1 -> v2
Added patch that makes arrays static const.

 drivers/staging/rtl8188eu/hal/phy.c | 33 +++++++++++++++--------------
 1 file changed, 17 insertions(+), 16 deletions(-)

diff --git a/drivers/staging/rtl8188eu/hal/phy.c 
b/drivers/staging/rtl8188eu/hal/phy.c
index 5eca3625d5a8..a0522d6764d6 100644
--- a/drivers/staging/rtl8188eu/hal/phy.c
+++ b/drivers/staging/rtl8188eu/hal/phy.c
@@ -953,25 +953,26 @@ static void phy_iq_calibrate(struct adapter *adapt, s32 
result[][8],
        u32 i;
        u8 path_a_ok, path_b_ok;
        u32 adda_reg[IQK_ADDA_REG_NUM] = {
-                                         rFPGA0_XCD_SwitchControl, rBlue_Tooth,
-                                         rRx_Wait_CCA, rTx_CCK_RFON,
-                                         rTx_CCK_BBON, rTx_OFDM_RFON,
-                                         rTx_OFDM_BBON, rTx_To_Rx,
-                                         rTx_To_Tx, rRx_CCK,
-                                         rRx_OFDM, rRx_Wait_RIFS,
-                                         rRx_TO_Rx, rStandby,
-                                         rSleep, rPMPD_ANAEN};
-
+               rFPGA0_XCD_SwitchControl, rBlue_Tooth,
+               rRx_Wait_CCA, rTx_CCK_RFON,
+               rTx_CCK_BBON, rTx_OFDM_RFON,
+               rTx_OFDM_BBON, rTx_To_Rx,
+               rTx_To_Tx, rRx_CCK,
+               rRx_OFDM, rRx_Wait_RIFS,
+               rRx_TO_Rx, rStandby,
+               rSleep, rPMPD_ANAEN
+       };
        u32 iqk_mac_reg[IQK_MAC_REG_NUM] = {
-                                           REG_TXPAUSE, REG_BCN_CTRL,
-                                           REG_BCN_CTRL_1, REG_GPIO_MUXCFG};
-
+               REG_TXPAUSE, REG_BCN_CTRL,
+               REG_BCN_CTRL_1, REG_GPIO_MUXCFG
+       };
        /* since 92C & 92D have the different define in IQK_BB_REG */
        u32 iqk_bb_reg_92c[IQK_BB_REG_NUM] = {
-                                             rOFDM0_TRxPathEnable, 
rOFDM0_TRMuxPar,
-                                             rFPGA0_XCD_RFInterfaceSW, 
rConfig_AntA, rConfig_AntB,
-                                             rFPGA0_XAB_RFInterfaceSW, 
rFPGA0_XA_RFInterfaceOE,
-                                             rFPGA0_XB_RFInterfaceOE, 
rFPGA0_RFMOD};
+               rOFDM0_TRxPathEnable, rOFDM0_TRMuxPar,
+               rFPGA0_XCD_RFInterfaceSW, rConfig_AntA, rConfig_AntB,
+               rFPGA0_XAB_RFInterfaceSW, rFPGA0_XA_RFInterfaceOE,
+               rFPGA0_XB_RFInterfaceOE, rFPGA0_RFMOD
+       };
 
        u32 retry_count = 9;
 
-- 
2.26.2

Reply via email to