mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-06 04:19:23 -04:00
Staging: rtl8723bs: fix spaces in basic_types.h
This commit fixes the following checkpatch.pl error:
ERROR:POINTER_LOCATION: "(foo*)" should be "(foo *)"
#16: FILE: ./include/basic_types.h:16:
+#define FIELD_OFFSET(s, field) ((__kernel_ssize_t)&((s*)(0))->field)
Reviewed-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Marco Cesati <marcocesati@gmail.com>
Link: https://lore.kernel.org/r/20210315170618.2566-40-marcocesati@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
fc05601e66
commit
6aa8b0d561
@@ -13,7 +13,7 @@
|
||||
|
||||
#include <linux/types.h>
|
||||
|
||||
#define FIELD_OFFSET(s, field) ((__kernel_ssize_t)&((s*)(0))->field)
|
||||
#define FIELD_OFFSET(s, field) ((__kernel_ssize_t)&((s *)(0))->field)
|
||||
|
||||
#define SIZE_PTR __kernel_size_t
|
||||
#define SSIZE_PTR __kernel_ssize_t
|
||||
|
||||
Reference in New Issue
Block a user