diff options
-rw-r--r-- | include/linux/Kbuild | 2 | ||||
-rw-r--r-- | include/linux/stddef.h | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/include/linux/Kbuild b/include/linux/Kbuild index 7d076d97b2f7..10d2ca07562a 100644 --- a/include/linux/Kbuild +++ b/include/linux/Kbuild | |||
@@ -143,7 +143,6 @@ header-y += snmp.h | |||
143 | header-y += sockios.h | 143 | header-y += sockios.h |
144 | header-y += som.h | 144 | header-y += som.h |
145 | header-y += sound.h | 145 | header-y += sound.h |
146 | header-y += stddef.h | ||
147 | header-y += synclink.h | 146 | header-y += synclink.h |
148 | header-y += telephony.h | 147 | header-y += telephony.h |
149 | header-y += termios.h | 148 | header-y += termios.h |
@@ -318,6 +317,7 @@ unifdef-y += sonet.h | |||
318 | unifdef-y += sonypi.h | 317 | unifdef-y += sonypi.h |
319 | unifdef-y += soundcard.h | 318 | unifdef-y += soundcard.h |
320 | unifdef-y += stat.h | 319 | unifdef-y += stat.h |
320 | unifdef-y += stddef.h | ||
321 | unifdef-y += sysctl.h | 321 | unifdef-y += sysctl.h |
322 | unifdef-y += tcp.h | 322 | unifdef-y += tcp.h |
323 | unifdef-y += time.h | 323 | unifdef-y += time.h |
diff --git a/include/linux/stddef.h b/include/linux/stddef.h index b3a2cadf90f2..ea65dfb60cd8 100644 --- a/include/linux/stddef.h +++ b/include/linux/stddef.h | |||
@@ -10,11 +10,13 @@ | |||
10 | #define NULL ((void *)0) | 10 | #define NULL ((void *)0) |
11 | #endif | 11 | #endif |
12 | 12 | ||
13 | #ifdef __KERNEL__ | ||
13 | #undef offsetof | 14 | #undef offsetof |
14 | #ifdef __compiler_offsetof | 15 | #ifdef __compiler_offsetof |
15 | #define offsetof(TYPE,MEMBER) __compiler_offsetof(TYPE,MEMBER) | 16 | #define offsetof(TYPE,MEMBER) __compiler_offsetof(TYPE,MEMBER) |
16 | #else | 17 | #else |
17 | #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER) | 18 | #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER) |
18 | #endif | 19 | #endif |
20 | #endif /* __KERNEL__ */ | ||
19 | 21 | ||
20 | #endif | 22 | #endif |