From: Marco Cesati Date: Mon, 15 Mar 2021 17:05:55 +0000 (+0100) Subject: Staging: rtl8723bs: fix spaces in odm_debug.h X-Git-Tag: iomap-folio-5.17-old~1610^2~507 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=a5b2ee5f96c79e436e82d4797172a74801b8afe0;p=users%2Fwilly%2Flinux.git Staging: rtl8723bs: fix spaces in odm_debug.h This commit fixes the following checkpatch.pl errors: ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar" #165: FILE: ./hal/odm_debug.h:165: +void ODM_InitDebugSetting(struct DM_ODM_T * pDM_Odm); Reviewed-by: Dan Carpenter Signed-off-by: Marco Cesati Link: https://lore.kernel.org/r/20210315170618.2566-35-marcocesati@gmail.com Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/rtl8723bs/hal/odm_debug.h b/drivers/staging/rtl8723bs/hal/odm_debug.h index adb63ecc0b3e..22f0e37456e2 100644 --- a/drivers/staging/rtl8723bs/hal/odm_debug.h +++ b/drivers/staging/rtl8723bs/hal/odm_debug.h @@ -162,6 +162,6 @@ no_printk("%s %p", title_str, ptr) #endif -void ODM_InitDebugSetting(struct DM_ODM_T * pDM_Odm); +void ODM_InitDebugSetting(struct DM_ODM_T *pDM_Odm); #endif /* __ODM_DBG_H__ */