Message ID | 20190924105839.110713-5-pankaj.laxminarayan.bharadiya@intel.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | Add and use sizeof_member macro to bring uniformity | expand |
diff --git a/include/linux/kernel.h b/include/linux/kernel.h index 0b80d8bb3978..064497792c70 100644 --- a/include/linux/kernel.h +++ b/include/linux/kernel.h @@ -88,15 +88,6 @@ */ #define sizeof_member(T, m) (sizeof(((T *)0)->m)) -/** - * FIELD_SIZEOF - get the size of a struct's field - * @t: the target struct - * @f: the target struct's field - * Return: the size of @f in the struct definition without having a - * declared instance of @t. - */ -#define FIELD_SIZEOF(t, f) (sizeof(((t*)0)->f)) - #define typeof_member(T, m) typeof(((T*)0)->m) #define DIV_ROUND_UP __KERNEL_DIV_ROUND_UP
Now we have sizeof_member macro to find the size of a member of a struct. FIELD_SIZEOF macro is not getting used any more hence remove it. Signed-off-by: Pankaj Bharadiya <pankaj.laxminarayan.bharadiya@intel.com> --- include/linux/kernel.h | 9 --------- 1 file changed, 9 deletions(-)