Skip to content

Commit f3a0147

Browse files
Marco Cesatiintel-lab-lkp
authored andcommitted
Staging: rtl8723bs: fix spaces in HalHWImg8723B_RF.c
This commit fixes the following checkpatch.pl errors: ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar" torvalds#12: FILE: ./hal/HalHWImg8723B_RF.c:12: + struct DM_ODM_T * pDM_Odm, const u32 Condition1, const u32 Condition2 ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar" torvalds#124: FILE: ./hal/HalHWImg8723B_RF.c:124: + struct DM_ODM_T * pDM_Odm, const u32 Condition1, const u32 Condition2 ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar" torvalds#262: FILE: ./hal/HalHWImg8723B_RF.c:262: +void ODM_ReadAndConfig_MP_8723B_RadioA(struct DM_ODM_T * pDM_Odm) ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar" torvalds#423: FILE: ./hal/HalHWImg8723B_RF.c:423: +void ODM_ReadAndConfig_MP_8723B_TxPowerTrack_SDIO(struct DM_ODM_T * pDM_Odm) ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar" torvalds#425: FILE: ./hal/HalHWImg8723B_RF.c:425: + struct ODM_RF_CAL_T * pRFCalibrateInfo = &(pDM_Odm->RFCalibrateInfo); ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar" torvalds#758: FILE: ./hal/HalHWImg8723B_RF.c:758: +void ODM_ReadAndConfig_MP_8723B_TXPWR_LMT(struct DM_ODM_T * pDM_Odm) Signed-off-by: Marco Cesati <[email protected]>
1 parent 8fd2bfc commit f3a0147

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

drivers/staging/rtl8723bs/hal/HalHWImg8723B_RF.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#include "odm_precomp.h"
1010

1111
static bool CheckPositive(
12-
struct DM_ODM_T * pDM_Odm, const u32 Condition1, const u32 Condition2
12+
struct DM_ODM_T *pDM_Odm, const u32 Condition1, const u32 Condition2
1313
)
1414
{
1515
u8 _BoardType =
@@ -121,7 +121,7 @@ static bool CheckPositive(
121121
}
122122

123123
static bool CheckNegative(
124-
struct DM_ODM_T * pDM_Odm, const u32 Condition1, const u32 Condition2
124+
struct DM_ODM_T *pDM_Odm, const u32 Condition1, const u32 Condition2
125125
)
126126
{
127127
return true;
@@ -259,7 +259,7 @@ static u32 Array_MP_8723B_RadioA[] = {
259259

260260
};
261261

262-
void ODM_ReadAndConfig_MP_8723B_RadioA(struct DM_ODM_T * pDM_Odm)
262+
void ODM_ReadAndConfig_MP_8723B_RadioA(struct DM_ODM_T *pDM_Odm)
263263
{
264264
u32 i = 0;
265265
u32 ArrayLen = ARRAY_SIZE(Array_MP_8723B_RadioA);
@@ -420,9 +420,9 @@ static u8 gDeltaSwingTableIdx_MP_2GCCKA_P_TxPowerTrack_SDIO_8723B[] = {
420420
8, 8, 9, 9, 9, 10, 10, 11, 11, 12, 12, 13, 14, 15
421421
};
422422

423-
void ODM_ReadAndConfig_MP_8723B_TxPowerTrack_SDIO(struct DM_ODM_T * pDM_Odm)
423+
void ODM_ReadAndConfig_MP_8723B_TxPowerTrack_SDIO(struct DM_ODM_T *pDM_Odm)
424424
{
425-
struct ODM_RF_CAL_T * pRFCalibrateInfo = &(pDM_Odm->RFCalibrateInfo);
425+
struct ODM_RF_CAL_T *pRFCalibrateInfo = &pDM_Odm->RFCalibrateInfo;
426426

427427
ODM_RT_TRACE(
428428
pDM_Odm,
@@ -755,7 +755,7 @@ static u8 *Array_MP_8723B_TXPWR_LMT[] = {
755755
"MKK", "2.4G", "40M", "HT", "2T", "14", "63"
756756
};
757757

758-
void ODM_ReadAndConfig_MP_8723B_TXPWR_LMT(struct DM_ODM_T * pDM_Odm)
758+
void ODM_ReadAndConfig_MP_8723B_TXPWR_LMT(struct DM_ODM_T *pDM_Odm)
759759
{
760760
u32 i = 0;
761761
u8 **Array = Array_MP_8723B_TXPWR_LMT;

0 commit comments

Comments
 (0)