diff options
| author | Marco Cesati <[email protected]> | 2021-03-15 18:06:09 +0100 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2021-03-16 12:23:17 +0100 |
| commit | 0c31a0f7737c74b0cdffbb1bbb7ff09d044e192d (patch) | |
| tree | 60e900e7178f1e367e439e89f7f5718aaadfa5db | |
| parent | 310cebf6b0b2e96cae3a344ef022064465a22c9f (diff) | |
Staging: rtl8723bs: fix spaces in osdep_service_linux.h
This commit fixes the following checkpatch.pl error:
ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar"
#123: FILE: ./include/osdep_service_linux.h:123:
+extern struct net_device * rtw_alloc_etherdev(int sizeof_priv);
Reviewed-by: Dan Carpenter <[email protected]>
Signed-off-by: Marco Cesati <[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_linux.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/rtl8723bs/include/osdep_service_linux.h b/drivers/staging/rtl8723bs/include/osdep_service_linux.h index 6454625d6bcf..3492ec1efd1e 100644 --- a/drivers/staging/rtl8723bs/include/osdep_service_linux.h +++ b/drivers/staging/rtl8723bs/include/osdep_service_linux.h @@ -120,6 +120,6 @@ static inline struct adapter *rtw_netdev_priv(struct net_device *netdev) } struct net_device *rtw_alloc_etherdev_with_old_priv(int sizeof_priv, void *old_priv); -extern struct net_device * rtw_alloc_etherdev(int sizeof_priv); +extern struct net_device *rtw_alloc_etherdev(int sizeof_priv); #endif |