mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-07 23:20:32 -04:00
Staging: rtl8723bs: fix spaces in odm_PathDiv.c
This commit fixes the following checkpatch.pl errors:
ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar"
#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"
#25: FILE: ./hal/odm_PathDiv.c:25:
+ struct DM_ODM_T * pDM_Odm = (struct DM_ODM_T *)pDM_VOID;
Reviewed-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Marco Cesati <marcocesati@gmail.com>
Link: https://lore.kernel.org/r/20210315170618.2566-31-marcocesati@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
3493bf17d5
commit
805b0627ef
@@ -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(
|
||||
@@ -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(
|
||||
|
||||
Reference in New Issue
Block a user