Return-path: Received: from mail-pd0-f169.google.com ([209.85.192.169]:37536 "EHLO mail-pd0-f169.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750934AbaLEPrX (ORCPT ); Fri, 5 Dec 2014 10:47:23 -0500 From: Anjana Sasindran To: gregkh@linuxfoundation.org, roberta.dobrescu@gmail.com Cc: linux-kernel@vger.kernel.org, devel@driverdev.osuosl.org, linux-wireless@vger.kernel.org, Anjana Sasindran Subject: [PATCH] staging: rtl8723au: hal: Removed a space before semicolon Date: Fri, 5 Dec 2014 21:17:02 +0530 Message-Id: <1417794422-6383-1-git-send-email-anjanasasindran123@gmail.com> (sfid-20141205_164739_674701_4EA5040E) Sender: linux-wireless-owner@vger.kernel.org List-ID: This patch fix the checkpatch.pl warning: WARNING: space before semicolon prohibited Signed-off-by: Anjana Sasindran --- drivers/staging/rtl8723au/hal/rtl8723a_bt-coexist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/rtl8723au/hal/rtl8723a_bt-coexist.c b/drivers/staging/rtl8723au/hal/rtl8723a_bt-coexist.c index 6151e85..6878c91 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; } -- 1.9.1