Skip to content

Commit 1e7330f

Browse files
Marco Cesatigregkh
authored andcommitted
Staging: rtl8723bs: fix spaces in HalHWImg8723B_BB.c
This commit fixes the following checkpatch.pl errors: ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar" torvalds#12: FILE: ./hal/HalHWImg8723B_BB.c:12: + struct DM_ODM_T * pDM_Odm, const u32 Condition1, const u32 Condition2 ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar" torvalds#115: FILE: ./hal/HalHWImg8723B_BB.c:115: + struct DM_ODM_T * pDM_Odm, const u32 Condition1, const u32 Condition2 ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar" torvalds#260: FILE: ./hal/HalHWImg8723B_BB.c:260: +void ODM_ReadAndConfig_MP_8723B_AGC_TAB(struct DM_ODM_T * pDM_Odm) ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar" torvalds#529: FILE: ./hal/HalHWImg8723B_BB.c:529: +void ODM_ReadAndConfig_MP_8723B_PHY_REG(struct DM_ODM_T * pDM_Odm) ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar" torvalds#609: FILE: ./hal/HalHWImg8723B_BB.c:609: +void ODM_ReadAndConfig_MP_8723B_PHY_REG_PG(struct DM_ODM_T * pDM_Odm) Reviewed-by: Dan Carpenter <[email protected]> Signed-off-by: Marco Cesati <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent 044e893 commit 1e7330f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

drivers/staging/rtl8723bs/hal/HalHWImg8723B_BB.c

Lines changed: 5 additions & 5 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 =
@@ -112,7 +112,7 @@ static bool CheckPositive(
112112
}
113113

114114
static bool CheckNegative(
115-
struct DM_ODM_T * pDM_Odm, const u32 Condition1, const u32 Condition2
115+
struct DM_ODM_T *pDM_Odm, const u32 Condition1, const u32 Condition2
116116
)
117117
{
118118
return true;
@@ -257,7 +257,7 @@ static u32 Array_MP_8723B_AGC_TAB[] = {
257257

258258
};
259259

260-
void ODM_ReadAndConfig_MP_8723B_AGC_TAB(struct DM_ODM_T * pDM_Odm)
260+
void ODM_ReadAndConfig_MP_8723B_AGC_TAB(struct DM_ODM_T *pDM_Odm)
261261
{
262262
u32 i = 0;
263263
u32 ArrayLen = ARRAY_SIZE(Array_MP_8723B_AGC_TAB);
@@ -526,7 +526,7 @@ static u32 Array_MP_8723B_PHY_REG[] = {
526526

527527
};
528528

529-
void ODM_ReadAndConfig_MP_8723B_PHY_REG(struct DM_ODM_T * pDM_Odm)
529+
void ODM_ReadAndConfig_MP_8723B_PHY_REG(struct DM_ODM_T *pDM_Odm)
530530
{
531531
u32 i = 0;
532532
u32 ArrayLen = ARRAY_SIZE(Array_MP_8723B_PHY_REG);
@@ -606,7 +606,7 @@ static u32 Array_MP_8723B_PHY_REG_PG[] = {
606606
0, 0, 0, 0x00000e14, 0xffffffff, 0x26303436
607607
};
608608

609-
void ODM_ReadAndConfig_MP_8723B_PHY_REG_PG(struct DM_ODM_T * pDM_Odm)
609+
void ODM_ReadAndConfig_MP_8723B_PHY_REG_PG(struct DM_ODM_T *pDM_Odm)
610610
{
611611
u32 i = 0;
612612
u32 *Array = Array_MP_8723B_PHY_REG_PG;

0 commit comments

Comments
 (0)