Third of the patches that fixes the lines over 80 characters in reg.c

Signed-off-by: Iker Pedrosa <ikerpedro...@gmail.com>
---
 drivers/staging/winbond/reg.c | 30 ++++++++++++++++++++----------
 1 file changed, 20 insertions(+), 10 deletions(-)

diff --git a/drivers/staging/winbond/reg.c b/drivers/staging/winbond/reg.c
index 300038a..0cb0798 100644
--- a/drivers/staging/winbond/reg.c
+++ b/drivers/staging/winbond/reg.c
@@ -1093,15 +1093,18 @@ void RFSynthesizer_initial(struct hw_data *pHwData)
                Wb35Reg_WriteSync(pHwData, 0x1050, pHwData->reg.BB50);
                usleep(5000);
 
-               ltmp = (1 << 31) | (0 << 30) | (20 << 24) | BitReverse((0x0F << 
20) | 0xF01B0, 20);
+               ltmp = (1 << 31) | (0 << 30) | (20 << 24)
+                              | BitReverse((0x0F << 20) | 0xF01B0, 20);
                Wb35Reg_WriteSync(pHwData, 0x0864, ltmp);
                usleep(5000);
 
-               ltmp = (1 << 31) | (0 << 30) | (20 << 24) | BitReverse((0x0F << 
20) | 0xF01E0, 20);
+               ltmp = (1 << 31) | (0 << 30) | (20 << 24)
+                              | BitReverse((0x0F << 20) | 0xF01E0, 20);
                Wb35Reg_WriteSync(pHwData, 0x0864, ltmp);
                usleep(5000);
 
-               ltmp = (1 << 31) | (0 << 30) | (20 << 24) | BitReverse((0x0F << 
20) | 0xF01A0, 20);
+               ltmp = (1 << 31) | (0 << 30) | (20 << 24)
+                              | BitReverse((0x0F << 20) | 0xF01A0, 20);
                Wb35Reg_WriteSync(pHwData, 0x0864, ltmp);
 
                Wb35Reg_WriteSync(pHwData, 0x105c, pHwData->reg.BB5C);
@@ -1159,30 +1162,37 @@ void RFSynthesizer_initial(struct hw_data *pHwData)
 
                /* ----- Calibration (1). VCO frequency calibration */
                /* Calibration (1a.0). Synthesizer reset */
-               ltmp = (1 << 31) | (0 << 30) | (24 << 24) | 
BitReverse((0x0F<<24) | 0x00101E, 24);
+               ltmp = (1 << 31) | (0 << 30) | (24 << 24)
+                              | BitReverse((0x0F<<24) | 0x00101E, 24);
                Wb35Reg_WriteSync(pHwData, 0x0864, ltmp);
                usleep(5000);
                /* Calibration (1a). VCO frequency calibration mode ; waiting 
2msec VCO calibration time */
-               ltmp = (1 << 31) | (0 << 30) | (24 << 24) | 
BitReverse((0x00<<24) | 0xFE69c0, 24);
+               ltmp = (1 << 31) | (0 << 30) | (24 << 24)
+                              | BitReverse((0x00<<24) | 0xFE69c0, 24);
                Wb35Reg_WriteSync(pHwData, 0x0864, ltmp);
                usleep(2000);
 
                /* ----- Calibration (2). TX baseband Gm-C filter auto-tuning */
                /* Calibration (2a). turn off ENCAL signal */
-               ltmp = (1 << 31) | (0 << 30) | (24 << 24) | 
BitReverse((0x00<<24) | 0xF8EBC0, 24);
+               ltmp = (1 << 31) | (0 << 30) | (24 << 24)
+                              | BitReverse((0x00<<24) | 0xF8EBC0, 24);
                Wb35Reg_WriteSync(pHwData, 0x0864, ltmp);
                /* Calibration (2b.0). TX filter auto-tuning BW: TFLBW=101 
(TC5376A default) */
-               ltmp = (1 << 31) | (0 << 30) | (24 << 24) | 
BitReverse((0x07<<24) | 0x0C68CE, 24);
+               ltmp = (1 << 31) | (0 << 30) | (24 << 24)
+                              | BitReverse((0x07<<24) | 0x0C68CE, 24);
                Wb35Reg_WriteSync(pHwData, 0x0864, ltmp);
                /* Calibration (2b). send TX reset signal */
-               ltmp = (1 << 31) | (0 << 30) | (24 << 24) | 
BitReverse((0x0F<<24) | 0x00201E, 24);
+               ltmp = (1 << 31) | (0 << 30) | (24 << 24)
+                              | BitReverse((0x0F<<24) | 0x00201E, 24);
                Wb35Reg_WriteSync(pHwData, 0x0864, ltmp);
                /* Calibration (2c). turn-on TX Gm-C filter auto-tuning */
-               ltmp = (1 << 31) | (0 << 30) | (24 << 24) | 
BitReverse((0x00<<24) | 0xFCEBC0, 24);
+               ltmp = (1 << 31) | (0 << 30) | (24 << 24)
+                              | BitReverse((0x00<<24) | 0xFCEBC0, 24);
                Wb35Reg_WriteSync(pHwData, 0x0864, ltmp);
                udelay(150); /* Sleep 150 us */
                /* turn off ENCAL signal */
-               ltmp = (1 << 31) | (0 << 30) | (24 << 24) | 
BitReverse((0x00<<24) | 0xF8EBC0, 24);
+               ltmp = (1 << 31) | (0 << 30) | (24 << 24)
+                              | BitReverse((0x00<<24) | 0xF8EBC0, 24);
                Wb35Reg_WriteSync(pHwData, 0x0864, ltmp);
 
                /* ----- Calibration (3). RX baseband Gm-C filter auto-tuning */
-- 
1.8.1.2

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to