Skip to content

Commit fd4ef32

Browse files
Marco Cesatigregkh
authored andcommitted
Staging: rtl8723bs: fix spaces in HalHWImg8723B_MAC.c
This commit fixes the following checkpatch.pl errors: ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar" torvalds#12: FILE: ./hal/HalHWImg8723B_MAC.c:12: + struct DM_ODM_T * pDM_Odm, const u32 Condition1, const u32 Condition2 ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar" torvalds#114: FILE: ./hal/HalHWImg8723B_MAC.c:114: + struct DM_ODM_T * pDM_Odm, const u32 Condition1, const u32 Condition2 ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar" torvalds#231: FILE: ./hal/HalHWImg8723B_MAC.c:231: +void ODM_ReadAndConfig_MP_8723B_MAC_REG(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 5caf9ae commit fd4ef32

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

drivers/staging/rtl8723bs/hal/HalHWImg8723B_MAC.c

Lines changed: 3 additions & 3 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 =
@@ -111,7 +111,7 @@ static bool CheckPositive(
111111
}
112112

113113
static bool CheckNegative(
114-
struct DM_ODM_T * pDM_Odm, const u32 Condition1, const u32 Condition2
114+
struct DM_ODM_T *pDM_Odm, const u32 Condition1, const u32 Condition2
115115
)
116116
{
117117
return true;
@@ -228,7 +228,7 @@ static u32 Array_MP_8723B_MAC_REG[] = {
228228

229229
};
230230

231-
void ODM_ReadAndConfig_MP_8723B_MAC_REG(struct DM_ODM_T * pDM_Odm)
231+
void ODM_ReadAndConfig_MP_8723B_MAC_REG(struct DM_ODM_T *pDM_Odm)
232232
{
233233
u32 i = 0;
234234
u32 ArrayLen = ARRAY_SIZE(Array_MP_8723B_MAC_REG);

0 commit comments

Comments
 (0)