staging: rtl8192u: fix spaces around ';' in r819xU_phy.c
authorXenia Ragiadakou <burzalodowa@gmail.com>
Tue, 18 Jun 2013 02:29:37 +0000 (05:29 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 18 Jun 2013 18:32:38 +0000 (11:32 -0700)
This patch fixes the whitespace around ';' to meet the
linux kernel coding style.

Signed-off-by: Xenia Ragiadakou <burzalodowa@gmail.com>
Reviewed-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8192u/r819xU_phy.c

index 95f19b9808f6897ae23c5f8eaf8b3c3cd32dd6fe..fc52c785b16e32600121c097cdc99257feea91c0 100644 (file)
@@ -656,7 +656,7 @@ u8 rtl8192_phy_checkBBAndRF(struct net_device *dev, HW90_BLOCK_E CheckBlock,
        WriteAddr[HW90_BLOCK_PHY1] = 0x800;
        WriteAddr[HW90_BLOCK_RF] = 0x3;
        RT_TRACE(COMP_PHY, "=======>%s(), CheckBlock:%d\n", __FUNCTION__, CheckBlock);
-       for (i = 0 ; i < CheckTimes ; i++) {
+       for (i = 0; i < CheckTimes; i++) {
 
                //
                // Write Data to register and readback
@@ -732,7 +732,7 @@ void rtl8192_BB_Config_ParaFile(struct net_device *dev)
                rtStatus  = rtl8192_phy_checkBBAndRF(dev, (HW90_BLOCK_E)eCheckItem, (RF90_RADIO_PATH_E)0); //don't care RF path
                if (rtStatus != 0) {
                        RT_TRACE((COMP_ERR | COMP_PHY), "PHY_RF8256_Config():Check PHY%d Fail!!\n", eCheckItem-1);
-                       return ;
+                       return;
                }
        }
        /*---- Set CCK and OFDM Block "OFF"----*/
@@ -894,7 +894,7 @@ u8 rtl8192_phy_ConfigRFWithHeaderFile(struct net_device *dev,
 
        switch (eRFPath) {
        case RF90_PATH_A:
-               for (i = 0;i<RadioA_ArrayLength; i = i+2) {
+               for (i = 0; i<RadioA_ArrayLength; i = i+2) {
 
                        if (rtl819XRadioA_Array[i] == 0xfe) {
                                        mdelay(100);
@@ -906,7 +906,7 @@ u8 rtl8192_phy_ConfigRFWithHeaderFile(struct net_device *dev,
                }
                break;
        case RF90_PATH_B:
-               for (i = 0;i<RadioB_ArrayLength; i = i+2) {
+               for (i = 0; i<RadioB_ArrayLength; i = i+2) {
 
                        if (rtl819XRadioB_Array[i] == 0xfe) {
                                        mdelay(100);
@@ -918,7 +918,7 @@ u8 rtl8192_phy_ConfigRFWithHeaderFile(struct net_device *dev,
                }
                break;
        case RF90_PATH_C:
-               for (i = 0;i<RadioC_ArrayLength; i = i+2) {
+               for (i = 0; i<RadioC_ArrayLength; i = i+2) {
 
                        if (rtl819XRadioC_Array[i] == 0xfe) {
                                        mdelay(100);
@@ -930,7 +930,7 @@ u8 rtl8192_phy_ConfigRFWithHeaderFile(struct net_device *dev,
                }
                break;
        case RF90_PATH_D:
-               for (i = 0;i<RadioD_ArrayLength; i = i+2) {
+               for (i = 0; i<RadioD_ArrayLength; i = i+2) {
 
                        if (rtl819XRadioD_Array[i] == 0xfe) {
                                        mdelay(100);
This page took 0.026716 seconds and 5 git commands to generate.