Skip to content

Commit

Permalink
Staging: rtl8723bs: fix spaces in odm_PathDiv.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/odm_PathDiv.c:12:
    +	struct DM_ODM_T * pDM_Odm = (struct DM_ODM_T *)pDM_VOID;

    ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar"
    torvalds#25: FILE: ./hal/odm_PathDiv.c:25:
    +	struct DM_ODM_T * pDM_Odm = (struct DM_ODM_T *)pDM_VOID;

Signed-off-by: Marco Cesati <marcocesati@gmail.com>
  • Loading branch information
Marco Cesati authored and intel-lab-lkp committed Mar 15, 2021
1 parent 3b0d8f2 commit 78c74cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/staging/rtl8723bs/hal/odm_PathDiv.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

void odm_PathDiversityInit(void *pDM_VOID)
{
struct DM_ODM_T * pDM_Odm = (struct DM_ODM_T *)pDM_VOID;
struct DM_ODM_T *pDM_Odm = (struct DM_ODM_T *)pDM_VOID;

if (!(pDM_Odm->SupportAbility & ODM_BB_PATH_DIV))
ODM_RT_TRACE(
Expand All @@ -22,7 +22,7 @@ void odm_PathDiversityInit(void *pDM_VOID)

void odm_PathDiversity(void *pDM_VOID)
{
struct DM_ODM_T * pDM_Odm = (struct DM_ODM_T *)pDM_VOID;
struct DM_ODM_T *pDM_Odm = (struct DM_ODM_T *)pDM_VOID;

if (!(pDM_Odm->SupportAbility & ODM_BB_PATH_DIV))
ODM_RT_TRACE(
Expand Down

0 comments on commit 78c74cc

Please sign in to comment.