diff options
author | Kartik Kulkarni <[email protected]> | 2024-07-30 13:41:55 +0000 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2024-07-31 08:17:23 +0200 |
commit | fe4f695d753fb2200168ba6249136b7a719f73fe (patch) | |
tree | a3563a09a67c32c2dd84f6bcbbcb49346370a4ba | |
parent | 2501b491993f3165fbd01c09fb553113b934b211 (diff) |
staging: rtl8723bs: remove space after pointer
Fix checkpatch error "foo * bar" should be "foo *bar"
in osdep_service.h:105
Signed-off-by: Kartik Kulkarni <[email protected]>
Reviewed-by: Hans de Goede <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r-- | drivers/staging/rtl8723bs/include/osdep_service.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/rtl8723bs/include/osdep_service.h b/drivers/staging/rtl8723bs/include/osdep_service.h index 5629123cd668..b21267d7ef72 100644 --- a/drivers/staging/rtl8723bs/include/osdep_service.h +++ b/drivers/staging/rtl8723bs/include/osdep_service.h @@ -100,7 +100,7 @@ static inline int rtw_bug_check(void *parg1, void *parg2, void *parg3, void *par #define MAC_ARG(x) (x) #endif -extern void rtw_free_netdev(struct net_device * netdev); +extern void rtw_free_netdev(struct net_device *netdev); /* Macros for handling unaligned memory accesses */ |