From: Anjana Sasindran Date: Fri, 5 Dec 2014 15:47:02 +0000 (+0530) Subject: staging: rtl8723au: hal: Removed a space before semicolon X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=de77b4ceae336d97a272eedbfd0047045074dca9;p=deliverable%2Flinux.git staging: rtl8723au: hal: Removed a space before semicolon This patch fix the checkpatch.pl warning: WARNING: space before semicolon prohibited Signed-off-by: Anjana Sasindran Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/rtl8723au/hal/rtl8723a_bt-coexist.c b/drivers/staging/rtl8723au/hal/rtl8723a_bt-coexist.c index 86a83975f4f0..412d8cf5a52a 100644 --- a/drivers/staging/rtl8723au/hal/rtl8723a_bt-coexist.c +++ b/drivers/staging/rtl8723au/hal/rtl8723a_bt-coexist.c @@ -9145,7 +9145,7 @@ u32 BTDM_BtTxRxCounterL(struct rtw_adapter *padapter) u32 counters = 0; counters = pHalData->bt_coexist.halCoex8723.lowPriorityTx+ - pHalData->bt_coexist.halCoex8723.lowPriorityRx ; + pHalData->bt_coexist.halCoex8723.lowPriorityRx; return counters; }