diff options
author | Anjana Sasindran <anjanasasindran123@gmail.com> | 2014-11-30 12:33:37 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-12-02 19:54:43 -0500 |
commit | 5b53672bbc410e20cda96d045a3372d6212fc3bc (patch) | |
tree | 8d0b0cbe05549a5addfc1d8918cb89ace03b3ca5 | |
parent | 13cb076d3057e0c4b26acb0ee5e5d6ea9b5131c0 (diff) |
staging: rtl8723au: hal: Removed the extra semicolon
This patch fix the checkpatch.pl warning:
WARNING: Statement terminations use 1 semicolon
Signed-off-by: Anjana Sasindran <anjanasasindran123@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/rtl8723au/hal/rtl8723a_bt-coexist.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/rtl8723au/hal/rtl8723a_bt-coexist.c b/drivers/staging/rtl8723au/hal/rtl8723a_bt-coexist.c index 78665eec3c1d..86a83975f4f0 100644 --- a/drivers/staging/rtl8723au/hal/rtl8723a_bt-coexist.c +++ b/drivers/staging/rtl8723au/hal/rtl8723a_bt-coexist.c | |||
@@ -10639,7 +10639,7 @@ void BTDM_BBBackOffLevel(struct rtw_adapter *padapter, u8 type) | |||
10639 | 10639 | ||
10640 | void BTDM_FWCoexAllOff(struct rtw_adapter *padapter) | 10640 | void BTDM_FWCoexAllOff(struct rtw_adapter *padapter) |
10641 | { | 10641 | { |
10642 | struct hal_data_8723a *pHalData = GET_HAL_DATA(padapter);; | 10642 | struct hal_data_8723a *pHalData = GET_HAL_DATA(padapter); |
10643 | 10643 | ||
10644 | RTPRINT(FBT, BT_TRACE, ("BTDM_FWCoexAllOff()\n")); | 10644 | RTPRINT(FBT, BT_TRACE, ("BTDM_FWCoexAllOff()\n")); |
10645 | if (pHalData->bt_coexist.bFWCoexistAllOff) | 10645 | if (pHalData->bt_coexist.bFWCoexistAllOff) |
@@ -10653,7 +10653,7 @@ void BTDM_FWCoexAllOff(struct rtw_adapter *padapter) | |||
10653 | 10653 | ||
10654 | void BTDM_SWCoexAllOff(struct rtw_adapter *padapter) | 10654 | void BTDM_SWCoexAllOff(struct rtw_adapter *padapter) |
10655 | { | 10655 | { |
10656 | struct hal_data_8723a *pHalData = GET_HAL_DATA(padapter);; | 10656 | struct hal_data_8723a *pHalData = GET_HAL_DATA(padapter); |
10657 | 10657 | ||
10658 | RTPRINT(FBT, BT_TRACE, ("BTDM_SWCoexAllOff()\n")); | 10658 | RTPRINT(FBT, BT_TRACE, ("BTDM_SWCoexAllOff()\n")); |
10659 | if (pHalData->bt_coexist.bSWCoexistAllOff) | 10659 | if (pHalData->bt_coexist.bSWCoexistAllOff) |
@@ -10666,7 +10666,7 @@ void BTDM_SWCoexAllOff(struct rtw_adapter *padapter) | |||
10666 | 10666 | ||
10667 | void BTDM_HWCoexAllOff(struct rtw_adapter *padapter) | 10667 | void BTDM_HWCoexAllOff(struct rtw_adapter *padapter) |
10668 | { | 10668 | { |
10669 | struct hal_data_8723a *pHalData = GET_HAL_DATA(padapter);; | 10669 | struct hal_data_8723a *pHalData = GET_HAL_DATA(padapter); |
10670 | 10670 | ||
10671 | RTPRINT(FBT, BT_TRACE, ("BTDM_HWCoexAllOff()\n")); | 10671 | RTPRINT(FBT, BT_TRACE, ("BTDM_HWCoexAllOff()\n")); |
10672 | if (pHalData->bt_coexist.bHWCoexistAllOff) | 10672 | if (pHalData->bt_coexist.bHWCoexistAllOff) |