]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
Staging: winbond: phy_calibration: second of the patches that fixes lines over 80...
authorIker Pedrosa <ikerpedrosam@gmail.com>
Mon, 16 Sep 2013 13:43:25 +0000 (15:43 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 25 Sep 2013 23:41:21 +0000 (16:41 -0700)
Second of the patches that fixes the lines over 80 characters in phy_calibration.c

Signed-off-by: Iker Pedrosa <ikerpedrosam@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/winbond/phy_calibration.c

index 6635c85a0ef54338f01e59e3f3ac2e1a22cccb22..d970660f6523efa7195491ccfc077dcc2bacf87b 100644 (file)
@@ -1233,8 +1233,10 @@ u8 _rx_iq_calibration_loop_winbond(struct hw_data *phw_data, u16 factor, u32 fre
                b_2 = (rot_image_q_b * 32768) / rot_tone_i_b -
                        phw_data->iq_rsdl_phase_tx_d2;
 
-               PHY_DEBUG(("[CAL]    ** iq_rsdl_gain_tx_d2 = %d\n", phw_data->iq_rsdl_gain_tx_d2));
-               PHY_DEBUG(("[CAL]    ** iq_rsdl_phase_tx_d2= %d\n", phw_data->iq_rsdl_phase_tx_d2));
+               PHY_DEBUG(("[CAL]    ** iq_rsdl_gain_tx_d2 = %d\n",
+                          phw_data->iq_rsdl_gain_tx_d2));
+               PHY_DEBUG(("[CAL]    ** iq_rsdl_phase_tx_d2= %d\n",
+                          phw_data->iq_rsdl_phase_tx_d2));
                PHY_DEBUG(("[CAL]    ***** EPSILON/2 = %d\n", a_2));
                PHY_DEBUG(("[CAL]    ***** THETA/2   = %d\n", b_2));
 
@@ -1280,7 +1282,8 @@ u8 _rx_iq_calibration_loop_winbond(struct hw_data *phw_data, u16 factor, u32 fre
 
                /* e. */
                pwr_tone = (iqcal_tone_i*iqcal_tone_i + iqcal_tone_q*iqcal_tone_q);
-               pwr_image = (iqcal_image_i*iqcal_image_i + iqcal_image_q*iqcal_image_q)*factor;
+               pwr_image = (iqcal_image_i*iqcal_image_i +
+                            iqcal_image_q*iqcal_image_q)*factor;
 
                PHY_DEBUG(("[CAL]    ** pwr_tone  = %d\n", pwr_tone));
                PHY_DEBUG(("[CAL]    ** pwr_image  = %d\n", pwr_image));
@@ -1577,7 +1580,8 @@ unsigned char adjust_TXVGA_for_iq_mag(struct hw_data *phw_data)
 
                sqsum = iqcal_tone_i0*iqcal_tone_i0 + iqcal_tone_q0*iqcal_tone_q0;
                iq_mag_0_tx = (s32) _sqrt(sqsum);
-               PHY_DEBUG(("[CAL]    ** auto_adjust_txvga_for_iq_mag_0_tx=%d\n", iq_mag_0_tx));
+               PHY_DEBUG(("[CAL]    ** auto_adjust_txvga_for_iq_mag_0_tx=%d\n",
+                          iq_mag_0_tx));
 
                if (iq_mag_0_tx >= 700 && iq_mag_0_tx <= 1750)
                        break;