staging: rtl8723au: hal: Removed spaces before semicolon

This patch fix the checkpatch.pl warning:

WARNING: space prohibited before semicolon

Signed-off-by: Anjana Sasindran <anjanasasindran123@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Anjana Sasindran 2014-12-03 21:42:09 +05:30 committed by Greg Kroah-Hartman
parent 3002b1a601
commit ef4c65351a
1 changed files with 4 additions and 4 deletions

View File

@ -113,7 +113,7 @@ static void odm_RxPhyStatus92CSeries_Parsing(struct dm_odm_t *pDM_Odm,
cck_highpwr = pDM_Odm->bCckHighPower; cck_highpwr = pDM_Odm->bCckHighPower;
cck_agc_rpt = pPhyStaRpt->cck_agc_rpt_ofdm_cfosho_a ; cck_agc_rpt = pPhyStaRpt->cck_agc_rpt_ofdm_cfosho_a;
/* The RSSI formula should be modified according to the gain table */ /* The RSSI formula should be modified according to the gain table */
if (!cck_highpwr) { if (!cck_highpwr) {
@ -138,16 +138,16 @@ static void odm_RxPhyStatus92CSeries_Parsing(struct dm_odm_t *pDM_Odm,
report = (cck_agc_rpt & 0x60)>>5; report = (cck_agc_rpt & 0x60)>>5;
switch (report) { switch (report) {
case 0x3: case 0x3:
rx_pwr_all = -46 - ((cck_agc_rpt & 0x1f)<<1) ; rx_pwr_all = -46 - ((cck_agc_rpt & 0x1f)<<1);
break; break;
case 0x2: case 0x2:
rx_pwr_all = -26 - ((cck_agc_rpt & 0x1f)<<1); rx_pwr_all = -26 - ((cck_agc_rpt & 0x1f)<<1);
break; break;
case 0x1: case 0x1:
rx_pwr_all = -12 - ((cck_agc_rpt & 0x1f)<<1) ; rx_pwr_all = -12 - ((cck_agc_rpt & 0x1f)<<1);
break; break;
case 0x0: case 0x0:
rx_pwr_all = 16 - ((cck_agc_rpt & 0x1f)<<1) ; rx_pwr_all = 16 - ((cck_agc_rpt & 0x1f)<<1);
break; break;
} }
} }