Skip to content

Commit

Permalink
Staging: rtl8723bs: fix spaces in HalHWImg8723B_MAC.c
Browse files Browse the repository at this point in the history
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)

Signed-off-by: Marco Cesati <marcocesati@gmail.com>
  • Loading branch information
Marco Cesati authored and intel-lab-lkp committed Mar 15, 2021
1 parent 32efb9e commit 2f80249
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/staging/rtl8723bs/hal/HalHWImg8723B_MAC.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#include "odm_precomp.h"

static bool CheckPositive(
struct DM_ODM_T * pDM_Odm, const u32 Condition1, const u32 Condition2
struct DM_ODM_T *pDM_Odm, const u32 Condition1, const u32 Condition2
)
{
u8 _BoardType =
Expand Down Expand Up @@ -111,7 +111,7 @@ static bool CheckPositive(
}

static bool CheckNegative(
struct DM_ODM_T * pDM_Odm, const u32 Condition1, const u32 Condition2
struct DM_ODM_T *pDM_Odm, const u32 Condition1, const u32 Condition2
)
{
return true;
Expand Down Expand Up @@ -228,7 +228,7 @@ static u32 Array_MP_8723B_MAC_REG[] = {

};

void ODM_ReadAndConfig_MP_8723B_MAC_REG(struct DM_ODM_T * pDM_Odm)
void ODM_ReadAndConfig_MP_8723B_MAC_REG(struct DM_ODM_T *pDM_Odm)
{
u32 i = 0;
u32 ArrayLen = ARRAY_SIZE(Array_MP_8723B_MAC_REG);
Expand Down

0 comments on commit 2f80249

Please sign in to comment.