diff options
author | Robert P. J. Day <rpjday@crashcourse.ca> | 2008-04-30 03:55:12 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-30 11:29:54 -0400 |
commit | 735643ee6cc5249bfac07fcad0946a5e7aff4423 (patch) | |
tree | e725df246f4a3cf88b6b42a28d859ab969acf81c | |
parent | 71cc2c2152170b8166f59abb0604dc62073aeb92 (diff) |
Remove "#ifdef __KERNEL__" checks from unexported headers
Remove the "#ifdef __KERNEL__" tests from unexported header files in
linux/include whose entire contents are wrapped in that preprocessor
test.
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
Cc: David Woodhouse <dwmw2@infradead.org>
Cc: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
41 files changed, 1 insertions, 130 deletions
diff --git a/include/linux/agp_backend.h b/include/linux/agp_backend.h index 03e34547d489..661d90d6cf7c 100644 --- a/include/linux/agp_backend.h +++ b/include/linux/agp_backend.h | |||
@@ -30,8 +30,6 @@ | |||
30 | #ifndef _AGP_BACKEND_H | 30 | #ifndef _AGP_BACKEND_H |
31 | #define _AGP_BACKEND_H 1 | 31 | #define _AGP_BACKEND_H 1 |
32 | 32 | ||
33 | #ifdef __KERNEL__ | ||
34 | |||
35 | #ifndef TRUE | 33 | #ifndef TRUE |
36 | #define TRUE 1 | 34 | #define TRUE 1 |
37 | #endif | 35 | #endif |
@@ -111,5 +109,4 @@ extern struct agp_bridge_data *agp_backend_acquire(struct pci_dev *); | |||
111 | extern void agp_backend_release(struct agp_bridge_data *); | 109 | extern void agp_backend_release(struct agp_bridge_data *); |
112 | extern void agp_flush_chipset(struct agp_bridge_data *); | 110 | extern void agp_flush_chipset(struct agp_bridge_data *); |
113 | 111 | ||
114 | #endif /* __KERNEL__ */ | ||
115 | #endif /* _AGP_BACKEND_H */ | 112 | #endif /* _AGP_BACKEND_H */ |
diff --git a/include/linux/cdev.h b/include/linux/cdev.h index 1e29b13d0062..fb4591977b03 100644 --- a/include/linux/cdev.h +++ b/include/linux/cdev.h | |||
@@ -1,6 +1,5 @@ | |||
1 | #ifndef _LINUX_CDEV_H | 1 | #ifndef _LINUX_CDEV_H |
2 | #define _LINUX_CDEV_H | 2 | #define _LINUX_CDEV_H |
3 | #ifdef __KERNEL__ | ||
4 | 3 | ||
5 | #include <linux/kobject.h> | 4 | #include <linux/kobject.h> |
6 | #include <linux/kdev_t.h> | 5 | #include <linux/kdev_t.h> |
@@ -34,4 +33,3 @@ void cd_forget(struct inode *); | |||
34 | extern struct backing_dev_info directly_mappable_cdev_bdi; | 33 | extern struct backing_dev_info directly_mappable_cdev_bdi; |
35 | 34 | ||
36 | #endif | 35 | #endif |
37 | #endif | ||
diff --git a/include/linux/coda_fs_i.h b/include/linux/coda_fs_i.h index 424fe9cf02c4..b3ef0c461578 100644 --- a/include/linux/coda_fs_i.h +++ b/include/linux/coda_fs_i.h | |||
@@ -8,7 +8,6 @@ | |||
8 | #ifndef _LINUX_CODA_FS_I | 8 | #ifndef _LINUX_CODA_FS_I |
9 | #define _LINUX_CODA_FS_I | 9 | #define _LINUX_CODA_FS_I |
10 | 10 | ||
11 | #ifdef __KERNEL__ | ||
12 | #include <linux/types.h> | 11 | #include <linux/types.h> |
13 | #include <linux/list.h> | 12 | #include <linux/list.h> |
14 | #include <linux/coda.h> | 13 | #include <linux/coda.h> |
@@ -52,4 +51,3 @@ struct inode *coda_fid_to_inode(struct CodaFid *fid, struct super_block *sb); | |||
52 | void coda_replace_fid(struct inode *, struct CodaFid *, struct CodaFid *); | 51 | void coda_replace_fid(struct inode *, struct CodaFid *, struct CodaFid *); |
53 | 52 | ||
54 | #endif | 53 | #endif |
55 | #endif | ||
diff --git a/include/linux/concap.h b/include/linux/concap.h index 27304651d700..977acb3d1fb2 100644 --- a/include/linux/concap.h +++ b/include/linux/concap.h | |||
@@ -8,7 +8,7 @@ | |||
8 | 8 | ||
9 | #ifndef _LINUX_CONCAP_H | 9 | #ifndef _LINUX_CONCAP_H |
10 | #define _LINUX_CONCAP_H | 10 | #define _LINUX_CONCAP_H |
11 | #ifdef __KERNEL__ | 11 | |
12 | #include <linux/skbuff.h> | 12 | #include <linux/skbuff.h> |
13 | #include <linux/netdevice.h> | 13 | #include <linux/netdevice.h> |
14 | 14 | ||
@@ -110,4 +110,3 @@ extern int concap_nop(struct concap_proto *cprot); | |||
110 | */ | 110 | */ |
111 | extern int concap_drop_skb(struct concap_proto *cprot, struct sk_buff *skb); | 111 | extern int concap_drop_skb(struct concap_proto *cprot, struct sk_buff *skb); |
112 | #endif | 112 | #endif |
113 | #endif | ||
diff --git a/include/linux/configfs.h b/include/linux/configfs.h index 4b287ad9371a..3ae65b1bf90f 100644 --- a/include/linux/configfs.h +++ b/include/linux/configfs.h | |||
@@ -35,8 +35,6 @@ | |||
35 | #ifndef _CONFIGFS_H_ | 35 | #ifndef _CONFIGFS_H_ |
36 | #define _CONFIGFS_H_ | 36 | #define _CONFIGFS_H_ |
37 | 37 | ||
38 | #ifdef __KERNEL__ | ||
39 | |||
40 | #include <linux/kernel.h> | 38 | #include <linux/kernel.h> |
41 | #include <linux/types.h> | 39 | #include <linux/types.h> |
42 | #include <linux/list.h> | 40 | #include <linux/list.h> |
@@ -194,6 +192,4 @@ void configfs_unregister_subsystem(struct configfs_subsystem *subsys); | |||
194 | int configfs_depend_item(struct configfs_subsystem *subsys, struct config_item *target); | 192 | int configfs_depend_item(struct configfs_subsystem *subsys, struct config_item *target); |
195 | void configfs_undepend_item(struct configfs_subsystem *subsys, struct config_item *target); | 193 | void configfs_undepend_item(struct configfs_subsystem *subsys, struct config_item *target); |
196 | 194 | ||
197 | #endif /* __KERNEL__ */ | ||
198 | |||
199 | #endif /* _CONFIGFS_H_ */ | 195 | #endif /* _CONFIGFS_H_ */ |
diff --git a/include/linux/crc-ccitt.h b/include/linux/crc-ccitt.h index 90037617da8f..f52696a1ff0d 100644 --- a/include/linux/crc-ccitt.h +++ b/include/linux/crc-ccitt.h | |||
@@ -1,6 +1,5 @@ | |||
1 | #ifndef _LINUX_CRC_CCITT_H | 1 | #ifndef _LINUX_CRC_CCITT_H |
2 | #define _LINUX_CRC_CCITT_H | 2 | #define _LINUX_CRC_CCITT_H |
3 | #ifdef __KERNEL__ | ||
4 | 3 | ||
5 | #include <linux/types.h> | 4 | #include <linux/types.h> |
6 | 5 | ||
@@ -13,5 +12,4 @@ static inline u16 crc_ccitt_byte(u16 crc, const u8 c) | |||
13 | return (crc >> 8) ^ crc_ccitt_table[(crc ^ c) & 0xff]; | 12 | return (crc >> 8) ^ crc_ccitt_table[(crc ^ c) & 0xff]; |
14 | } | 13 | } |
15 | 14 | ||
16 | #endif /* __KERNEL__ */ | ||
17 | #endif /* _LINUX_CRC_CCITT_H */ | 15 | #endif /* _LINUX_CRC_CCITT_H */ |
diff --git a/include/linux/dcache.h b/include/linux/dcache.h index cfb1627ac51c..2a6639407c80 100644 --- a/include/linux/dcache.h +++ b/include/linux/dcache.h | |||
@@ -1,8 +1,6 @@ | |||
1 | #ifndef __LINUX_DCACHE_H | 1 | #ifndef __LINUX_DCACHE_H |
2 | #define __LINUX_DCACHE_H | 2 | #define __LINUX_DCACHE_H |
3 | 3 | ||
4 | #ifdef __KERNEL__ | ||
5 | |||
6 | #include <asm/atomic.h> | 4 | #include <asm/atomic.h> |
7 | #include <linux/list.h> | 5 | #include <linux/list.h> |
8 | #include <linux/spinlock.h> | 6 | #include <linux/spinlock.h> |
@@ -365,6 +363,4 @@ extern struct dentry *lookup_create(struct nameidata *nd, int is_dir); | |||
365 | 363 | ||
366 | extern int sysctl_vfs_cache_pressure; | 364 | extern int sysctl_vfs_cache_pressure; |
367 | 365 | ||
368 | #endif /* __KERNEL__ */ | ||
369 | |||
370 | #endif /* __LINUX_DCACHE_H */ | 366 | #endif /* __LINUX_DCACHE_H */ |
diff --git a/include/linux/device-mapper.h b/include/linux/device-mapper.h index ad3b787479a4..0d8d419d191a 100644 --- a/include/linux/device-mapper.h +++ b/include/linux/device-mapper.h | |||
@@ -8,8 +8,6 @@ | |||
8 | #ifndef _LINUX_DEVICE_MAPPER_H | 8 | #ifndef _LINUX_DEVICE_MAPPER_H |
9 | #define _LINUX_DEVICE_MAPPER_H | 9 | #define _LINUX_DEVICE_MAPPER_H |
10 | 10 | ||
11 | #ifdef __KERNEL__ | ||
12 | |||
13 | #include <linux/bio.h> | 11 | #include <linux/bio.h> |
14 | 12 | ||
15 | struct dm_target; | 13 | struct dm_target; |
@@ -344,5 +342,4 @@ static inline unsigned long to_bytes(sector_t n) | |||
344 | return (n << SECTOR_SHIFT); | 342 | return (n << SECTOR_SHIFT); |
345 | } | 343 | } |
346 | 344 | ||
347 | #endif /* __KERNEL__ */ | ||
348 | #endif /* _LINUX_DEVICE_MAPPER_H */ | 345 | #endif /* _LINUX_DEVICE_MAPPER_H */ |
diff --git a/include/linux/eventfd.h b/include/linux/eventfd.h index b489fc6d0b62..a701399b7fed 100644 --- a/include/linux/eventfd.h +++ b/include/linux/eventfd.h | |||
@@ -8,9 +8,6 @@ | |||
8 | #ifndef _LINUX_EVENTFD_H | 8 | #ifndef _LINUX_EVENTFD_H |
9 | #define _LINUX_EVENTFD_H | 9 | #define _LINUX_EVENTFD_H |
10 | 10 | ||
11 | |||
12 | #ifdef __KERNEL__ | ||
13 | |||
14 | #ifdef CONFIG_EVENTFD | 11 | #ifdef CONFIG_EVENTFD |
15 | 12 | ||
16 | struct file *eventfd_fget(int fd); | 13 | struct file *eventfd_fget(int fd); |
@@ -24,7 +21,5 @@ static inline int eventfd_signal(struct file *file, int n) | |||
24 | 21 | ||
25 | #endif /* CONFIG_EVENTFD */ | 22 | #endif /* CONFIG_EVENTFD */ |
26 | 23 | ||
27 | #endif /* __KERNEL__ */ | ||
28 | |||
29 | #endif /* _LINUX_EVENTFD_H */ | 24 | #endif /* _LINUX_EVENTFD_H */ |
30 | 25 | ||
diff --git a/include/linux/fsl_devices.h b/include/linux/fsl_devices.h index 2cad5c67397e..c415a496de3a 100644 --- a/include/linux/fsl_devices.h +++ b/include/linux/fsl_devices.h | |||
@@ -14,7 +14,6 @@ | |||
14 | * option) any later version. | 14 | * option) any later version. |
15 | */ | 15 | */ |
16 | 16 | ||
17 | #ifdef __KERNEL__ | ||
18 | #ifndef _FSL_DEVICE_H_ | 17 | #ifndef _FSL_DEVICE_H_ |
19 | #define _FSL_DEVICE_H_ | 18 | #define _FSL_DEVICE_H_ |
20 | 19 | ||
@@ -127,4 +126,3 @@ struct mpc8xx_pcmcia_ops { | |||
127 | }; | 126 | }; |
128 | 127 | ||
129 | #endif /* _FSL_DEVICE_H_ */ | 128 | #endif /* _FSL_DEVICE_H_ */ |
130 | #endif /* __KERNEL__ */ | ||
diff --git a/include/linux/fsnotify.h b/include/linux/fsnotify.h index d4b7c4ac72e6..a89513188ce7 100644 --- a/include/linux/fsnotify.h +++ b/include/linux/fsnotify.h | |||
@@ -11,8 +11,6 @@ | |||
11 | * (C) Copyright 2005 Robert Love | 11 | * (C) Copyright 2005 Robert Love |
12 | */ | 12 | */ |
13 | 13 | ||
14 | #ifdef __KERNEL__ | ||
15 | |||
16 | #include <linux/dnotify.h> | 14 | #include <linux/dnotify.h> |
17 | #include <linux/inotify.h> | 15 | #include <linux/inotify.h> |
18 | #include <linux/audit.h> | 16 | #include <linux/audit.h> |
@@ -296,6 +294,4 @@ static inline void fsnotify_oldname_free(const char *old_name) | |||
296 | 294 | ||
297 | #endif /* ! CONFIG_INOTIFY */ | 295 | #endif /* ! CONFIG_INOTIFY */ |
298 | 296 | ||
299 | #endif /* __KERNEL__ */ | ||
300 | |||
301 | #endif /* _LINUX_FS_NOTIFY_H */ | 297 | #endif /* _LINUX_FS_NOTIFY_H */ |
diff --git a/include/linux/hw_random.h b/include/linux/hw_random.h index 85d11916e9ea..7244456e7e65 100644 --- a/include/linux/hw_random.h +++ b/include/linux/hw_random.h | |||
@@ -11,7 +11,6 @@ | |||
11 | 11 | ||
12 | #ifndef LINUX_HWRANDOM_H_ | 12 | #ifndef LINUX_HWRANDOM_H_ |
13 | #define LINUX_HWRANDOM_H_ | 13 | #define LINUX_HWRANDOM_H_ |
14 | #ifdef __KERNEL__ | ||
15 | 14 | ||
16 | #include <linux/types.h> | 15 | #include <linux/types.h> |
17 | #include <linux/list.h> | 16 | #include <linux/list.h> |
@@ -46,5 +45,4 @@ extern int hwrng_register(struct hwrng *rng); | |||
46 | /** Unregister a Hardware Random Number Generator driver. */ | 45 | /** Unregister a Hardware Random Number Generator driver. */ |
47 | extern void hwrng_unregister(struct hwrng *rng); | 46 | extern void hwrng_unregister(struct hwrng *rng); |
48 | 47 | ||
49 | #endif /* __KERNEL__ */ | ||
50 | #endif /* LINUX_HWRANDOM_H_ */ | 48 | #endif /* LINUX_HWRANDOM_H_ */ |
diff --git a/include/linux/i2o.h b/include/linux/i2o.h index f65e58a1d925..7d51cbca49ab 100644 --- a/include/linux/i2o.h +++ b/include/linux/i2o.h | |||
@@ -18,8 +18,6 @@ | |||
18 | #ifndef _I2O_H | 18 | #ifndef _I2O_H |
19 | #define _I2O_H | 19 | #define _I2O_H |
20 | 20 | ||
21 | #ifdef __KERNEL__ /* This file to be included by kernel only */ | ||
22 | |||
23 | #include <linux/i2o-dev.h> | 21 | #include <linux/i2o-dev.h> |
24 | 22 | ||
25 | /* How many different OSM's are we allowing */ | 23 | /* How many different OSM's are we allowing */ |
@@ -1255,5 +1253,4 @@ extern void i2o_dump_message(struct i2o_message *); | |||
1255 | extern void i2o_dump_hrt(struct i2o_controller *c); | 1253 | extern void i2o_dump_hrt(struct i2o_controller *c); |
1256 | extern void i2o_debug_state(struct i2o_controller *c); | 1254 | extern void i2o_debug_state(struct i2o_controller *c); |
1257 | 1255 | ||
1258 | #endif /* __KERNEL__ */ | ||
1259 | #endif /* _I2O_H */ | 1256 | #endif /* _I2O_H */ |
diff --git a/include/linux/if_macvlan.h b/include/linux/if_macvlan.h index 0d9d7ea2c1cc..5f200bac3749 100644 --- a/include/linux/if_macvlan.h +++ b/include/linux/if_macvlan.h | |||
@@ -1,9 +1,6 @@ | |||
1 | #ifndef _LINUX_IF_MACVLAN_H | 1 | #ifndef _LINUX_IF_MACVLAN_H |
2 | #define _LINUX_IF_MACVLAN_H | 2 | #define _LINUX_IF_MACVLAN_H |
3 | 3 | ||
4 | #ifdef __KERNEL__ | ||
5 | |||
6 | extern struct sk_buff *(*macvlan_handle_frame_hook)(struct sk_buff *); | 4 | extern struct sk_buff *(*macvlan_handle_frame_hook)(struct sk_buff *); |
7 | 5 | ||
8 | #endif /* __KERNEL__ */ | ||
9 | #endif /* _LINUX_IF_MACVLAN_H */ | 6 | #endif /* _LINUX_IF_MACVLAN_H */ |
diff --git a/include/linux/inet.h b/include/linux/inet.h index 675a7dbe86f8..1354080cf8cf 100644 --- a/include/linux/inet.h +++ b/include/linux/inet.h | |||
@@ -42,11 +42,9 @@ | |||
42 | #ifndef _LINUX_INET_H | 42 | #ifndef _LINUX_INET_H |
43 | #define _LINUX_INET_H | 43 | #define _LINUX_INET_H |
44 | 44 | ||
45 | #ifdef __KERNEL__ | ||
46 | #include <linux/types.h> | 45 | #include <linux/types.h> |
47 | 46 | ||
48 | extern __be32 in_aton(const char *str); | 47 | extern __be32 in_aton(const char *str); |
49 | extern int in4_pton(const char *src, int srclen, u8 *dst, int delim, const char **end); | 48 | extern int in4_pton(const char *src, int srclen, u8 *dst, int delim, const char **end); |
50 | extern int in6_pton(const char *src, int srclen, u8 *dst, int delim, const char **end); | 49 | extern int in6_pton(const char *src, int srclen, u8 *dst, int delim, const char **end); |
51 | #endif | ||
52 | #endif /* _LINUX_INET_H */ | 50 | #endif /* _LINUX_INET_H */ |
diff --git a/include/linux/isicom.h b/include/linux/isicom.h index 8f4c71759d73..bbd42197298f 100644 --- a/include/linux/isicom.h +++ b/include/linux/isicom.h | |||
@@ -1,11 +1,6 @@ | |||
1 | #ifndef _LINUX_ISICOM_H | 1 | #ifndef _LINUX_ISICOM_H |
2 | #define _LINUX_ISICOM_H | 2 | #define _LINUX_ISICOM_H |
3 | 3 | ||
4 | /*#define ISICOM_DEBUG*/ | ||
5 | /*#define ISICOM_DEBUG_DTR_RTS*/ | ||
6 | |||
7 | #ifdef __KERNEL__ | ||
8 | |||
9 | #define YES 1 | 4 | #define YES 1 |
10 | #define NO 0 | 5 | #define NO 0 |
11 | 6 | ||
@@ -85,6 +80,4 @@ | |||
85 | 80 | ||
86 | #define ISI_TXOK 0x0001 | 81 | #define ISI_TXOK 0x0001 |
87 | 82 | ||
88 | #endif /* __KERNEL__ */ | ||
89 | |||
90 | #endif /* ISICOM_H */ | 83 | #endif /* ISICOM_H */ |
diff --git a/include/linux/kfifo.h b/include/linux/kfifo.h index 404f4464cb1a..29f62e1733ff 100644 --- a/include/linux/kfifo.h +++ b/include/linux/kfifo.h | |||
@@ -21,8 +21,6 @@ | |||
21 | #ifndef _LINUX_KFIFO_H | 21 | #ifndef _LINUX_KFIFO_H |
22 | #define _LINUX_KFIFO_H | 22 | #define _LINUX_KFIFO_H |
23 | 23 | ||
24 | #ifdef __KERNEL__ | ||
25 | |||
26 | #include <linux/kernel.h> | 24 | #include <linux/kernel.h> |
27 | #include <linux/spinlock.h> | 25 | #include <linux/spinlock.h> |
28 | 26 | ||
@@ -151,7 +149,4 @@ static inline unsigned int kfifo_len(struct kfifo *fifo) | |||
151 | return ret; | 149 | return ret; |
152 | } | 150 | } |
153 | 151 | ||
154 | #else | ||
155 | #warning "don't include kernel headers in userspace" | ||
156 | #endif /* __KERNEL__ */ | ||
157 | #endif | 152 | #endif |
diff --git a/include/linux/kobj_map.h b/include/linux/kobj_map.h index bafe178a381f..73717ed9ea79 100644 --- a/include/linux/kobj_map.h +++ b/include/linux/kobj_map.h | |||
@@ -1,5 +1,3 @@ | |||
1 | #ifdef __KERNEL__ | ||
2 | |||
3 | #include <linux/mutex.h> | 1 | #include <linux/mutex.h> |
4 | 2 | ||
5 | typedef struct kobject *kobj_probe_t(dev_t, int *, void *); | 3 | typedef struct kobject *kobj_probe_t(dev_t, int *, void *); |
@@ -10,5 +8,3 @@ int kobj_map(struct kobj_map *, dev_t, unsigned long, struct module *, | |||
10 | void kobj_unmap(struct kobj_map *, dev_t, unsigned long); | 8 | void kobj_unmap(struct kobj_map *, dev_t, unsigned long); |
11 | struct kobject *kobj_lookup(struct kobj_map *, dev_t, int *); | 9 | struct kobject *kobj_lookup(struct kobj_map *, dev_t, int *); |
12 | struct kobj_map *kobj_map_init(kobj_probe_t *, struct mutex *); | 10 | struct kobj_map *kobj_map_init(kobj_probe_t *, struct mutex *); |
13 | |||
14 | #endif | ||
diff --git a/include/linux/kobject.h b/include/linux/kobject.h index caa3f411f15d..39e709f88aa0 100644 --- a/include/linux/kobject.h +++ b/include/linux/kobject.h | |||
@@ -16,8 +16,6 @@ | |||
16 | #ifndef _KOBJECT_H_ | 16 | #ifndef _KOBJECT_H_ |
17 | #define _KOBJECT_H_ | 17 | #define _KOBJECT_H_ |
18 | 18 | ||
19 | #ifdef __KERNEL__ | ||
20 | |||
21 | #include <linux/types.h> | 19 | #include <linux/types.h> |
22 | #include <linux/list.h> | 20 | #include <linux/list.h> |
23 | #include <linux/sysfs.h> | 21 | #include <linux/sysfs.h> |
@@ -224,5 +222,4 @@ static inline int kobject_action_type(const char *buf, size_t count, | |||
224 | { return -EINVAL; } | 222 | { return -EINVAL; } |
225 | #endif | 223 | #endif |
226 | 224 | ||
227 | #endif /* __KERNEL__ */ | ||
228 | #endif /* _KOBJECT_H_ */ | 225 | #endif /* _KOBJECT_H_ */ |
diff --git a/include/linux/kref.h b/include/linux/kref.h index 5d185635786e..0cef6badd6fb 100644 --- a/include/linux/kref.h +++ b/include/linux/kref.h | |||
@@ -15,8 +15,6 @@ | |||
15 | #ifndef _KREF_H_ | 15 | #ifndef _KREF_H_ |
16 | #define _KREF_H_ | 16 | #define _KREF_H_ |
17 | 17 | ||
18 | #ifdef __KERNEL__ | ||
19 | |||
20 | #include <linux/types.h> | 18 | #include <linux/types.h> |
21 | #include <asm/atomic.h> | 19 | #include <asm/atomic.h> |
22 | 20 | ||
@@ -29,5 +27,4 @@ void kref_init(struct kref *kref); | |||
29 | void kref_get(struct kref *kref); | 27 | void kref_get(struct kref *kref); |
30 | int kref_put(struct kref *kref, void (*release) (struct kref *kref)); | 28 | int kref_put(struct kref *kref, void (*release) (struct kref *kref)); |
31 | 29 | ||
32 | #endif /* __KERNEL__ */ | ||
33 | #endif /* _KREF_H_ */ | 30 | #endif /* _KREF_H_ */ |
diff --git a/include/linux/list.h b/include/linux/list.h index 7627508f1b74..08cf4f651889 100644 --- a/include/linux/list.h +++ b/include/linux/list.h | |||
@@ -1,8 +1,6 @@ | |||
1 | #ifndef _LINUX_LIST_H | 1 | #ifndef _LINUX_LIST_H |
2 | #define _LINUX_LIST_H | 2 | #define _LINUX_LIST_H |
3 | 3 | ||
4 | #ifdef __KERNEL__ | ||
5 | |||
6 | #include <linux/stddef.h> | 4 | #include <linux/stddef.h> |
7 | #include <linux/poison.h> | 5 | #include <linux/poison.h> |
8 | #include <linux/prefetch.h> | 6 | #include <linux/prefetch.h> |
@@ -983,7 +981,4 @@ static inline void hlist_add_after_rcu(struct hlist_node *prev, | |||
983 | ({ tpos = hlist_entry(pos, typeof(*tpos), member); 1;}); \ | 981 | ({ tpos = hlist_entry(pos, typeof(*tpos), member); 1;}); \ |
984 | pos = rcu_dereference(pos->next)) | 982 | pos = rcu_dereference(pos->next)) |
985 | 983 | ||
986 | #else | ||
987 | #warning "don't include kernel headers in userspace" | ||
988 | #endif /* __KERNEL__ */ | ||
989 | #endif | 984 | #endif |
diff --git a/include/linux/mmzone.h b/include/linux/mmzone.h index ceb675d83a56..c463cd8a15a4 100644 --- a/include/linux/mmzone.h +++ b/include/linux/mmzone.h | |||
@@ -1,7 +1,6 @@ | |||
1 | #ifndef _LINUX_MMZONE_H | 1 | #ifndef _LINUX_MMZONE_H |
2 | #define _LINUX_MMZONE_H | 2 | #define _LINUX_MMZONE_H |
3 | 3 | ||
4 | #ifdef __KERNEL__ | ||
5 | #ifndef __ASSEMBLY__ | 4 | #ifndef __ASSEMBLY__ |
6 | #ifndef __GENERATING_BOUNDS_H | 5 | #ifndef __GENERATING_BOUNDS_H |
7 | 6 | ||
@@ -1005,5 +1004,4 @@ unsigned long __init node_memmap_size_bytes(int, unsigned long, unsigned long); | |||
1005 | 1004 | ||
1006 | #endif /* !__GENERATING_BOUNDS.H */ | 1005 | #endif /* !__GENERATING_BOUNDS.H */ |
1007 | #endif /* !__ASSEMBLY__ */ | 1006 | #endif /* !__ASSEMBLY__ */ |
1008 | #endif /* __KERNEL__ */ | ||
1009 | #endif /* _LINUX_MMZONE_H */ | 1007 | #endif /* _LINUX_MMZONE_H */ |
diff --git a/include/linux/mount.h b/include/linux/mount.h index b4836d58f428..4374d1adeb4b 100644 --- a/include/linux/mount.h +++ b/include/linux/mount.h | |||
@@ -10,7 +10,6 @@ | |||
10 | */ | 10 | */ |
11 | #ifndef _LINUX_MOUNT_H | 11 | #ifndef _LINUX_MOUNT_H |
12 | #define _LINUX_MOUNT_H | 12 | #define _LINUX_MOUNT_H |
13 | #ifdef __KERNEL__ | ||
14 | 13 | ||
15 | #include <linux/types.h> | 14 | #include <linux/types.h> |
16 | #include <linux/list.h> | 15 | #include <linux/list.h> |
@@ -114,5 +113,4 @@ extern void mark_mounts_for_expiry(struct list_head *mounts); | |||
114 | extern spinlock_t vfsmount_lock; | 113 | extern spinlock_t vfsmount_lock; |
115 | extern dev_t name_to_dev_t(char *name); | 114 | extern dev_t name_to_dev_t(char *name); |
116 | 115 | ||
117 | #endif | ||
118 | #endif /* _LINUX_MOUNT_H */ | 116 | #endif /* _LINUX_MOUNT_H */ |
diff --git a/include/linux/ncp_fs_i.h b/include/linux/ncp_fs_i.h index bdb4c8ae6924..4b0bec477846 100644 --- a/include/linux/ncp_fs_i.h +++ b/include/linux/ncp_fs_i.h | |||
@@ -8,8 +8,6 @@ | |||
8 | #ifndef _LINUX_NCP_FS_I | 8 | #ifndef _LINUX_NCP_FS_I |
9 | #define _LINUX_NCP_FS_I | 9 | #define _LINUX_NCP_FS_I |
10 | 10 | ||
11 | #ifdef __KERNEL__ | ||
12 | |||
13 | /* | 11 | /* |
14 | * This is the ncpfs part of the inode structure. This must contain | 12 | * This is the ncpfs part of the inode structure. This must contain |
15 | * all the information we need to work with an inode after creation. | 13 | * all the information we need to work with an inode after creation. |
@@ -28,6 +26,4 @@ struct ncp_inode_info { | |||
28 | struct inode vfs_inode; | 26 | struct inode vfs_inode; |
29 | }; | 27 | }; |
30 | 28 | ||
31 | #endif /* __KERNEL__ */ | ||
32 | |||
33 | #endif /* _LINUX_NCP_FS_I */ | 29 | #endif /* _LINUX_NCP_FS_I */ |
diff --git a/include/linux/of_device.h b/include/linux/of_device.h index 6dc11959770c..afe338217d91 100644 --- a/include/linux/of_device.h +++ b/include/linux/of_device.h | |||
@@ -1,6 +1,5 @@ | |||
1 | #ifndef _LINUX_OF_DEVICE_H | 1 | #ifndef _LINUX_OF_DEVICE_H |
2 | #define _LINUX_OF_DEVICE_H | 2 | #define _LINUX_OF_DEVICE_H |
3 | #ifdef __KERNEL__ | ||
4 | 3 | ||
5 | #include <linux/device.h> | 4 | #include <linux/device.h> |
6 | #include <linux/of.h> | 5 | #include <linux/of.h> |
@@ -25,5 +24,4 @@ static inline void of_device_free(struct of_device *dev) | |||
25 | of_release_dev(&dev->dev); | 24 | of_release_dev(&dev->dev); |
26 | } | 25 | } |
27 | 26 | ||
28 | #endif /* __KERNEL__ */ | ||
29 | #endif /* _LINUX_OF_DEVICE_H */ | 27 | #endif /* _LINUX_OF_DEVICE_H */ |
diff --git a/include/linux/pm.h b/include/linux/pm.h index 1de72cbbe0d1..39a7ee859b67 100644 --- a/include/linux/pm.h +++ b/include/linux/pm.h | |||
@@ -21,8 +21,6 @@ | |||
21 | #ifndef _LINUX_PM_H | 21 | #ifndef _LINUX_PM_H |
22 | #define _LINUX_PM_H | 22 | #define _LINUX_PM_H |
23 | 23 | ||
24 | #ifdef __KERNEL__ | ||
25 | |||
26 | #include <linux/list.h> | 24 | #include <linux/list.h> |
27 | #include <asm/atomic.h> | 25 | #include <asm/atomic.h> |
28 | #include <asm/errno.h> | 26 | #include <asm/errno.h> |
@@ -225,6 +223,4 @@ extern unsigned int pm_flags; | |||
225 | #define PM_APM 1 | 223 | #define PM_APM 1 |
226 | #define PM_ACPI 2 | 224 | #define PM_ACPI 2 |
227 | 225 | ||
228 | #endif /* __KERNEL__ */ | ||
229 | |||
230 | #endif /* _LINUX_PM_H */ | 226 | #endif /* _LINUX_PM_H */ |
diff --git a/include/linux/pnp.h b/include/linux/pnp.h index b2f05c230f4b..2f3bcf73052c 100644 --- a/include/linux/pnp.h +++ b/include/linux/pnp.h | |||
@@ -6,8 +6,6 @@ | |||
6 | #ifndef _LINUX_PNP_H | 6 | #ifndef _LINUX_PNP_H |
7 | #define _LINUX_PNP_H | 7 | #define _LINUX_PNP_H |
8 | 8 | ||
9 | #ifdef __KERNEL__ | ||
10 | |||
11 | #include <linux/device.h> | 9 | #include <linux/device.h> |
12 | #include <linux/list.h> | 10 | #include <linux/list.h> |
13 | #include <linux/errno.h> | 11 | #include <linux/errno.h> |
@@ -466,6 +464,4 @@ static inline void pnp_unregister_driver(struct pnp_driver *drv) { } | |||
466 | #define pnp_dbg(format, arg...) do {} while (0) | 464 | #define pnp_dbg(format, arg...) do {} while (0) |
467 | #endif | 465 | #endif |
468 | 466 | ||
469 | #endif /* __KERNEL__ */ | ||
470 | |||
471 | #endif /* _LINUX_PNP_H */ | 467 | #endif /* _LINUX_PNP_H */ |
diff --git a/include/linux/profile.h b/include/linux/profile.h index ff576d1db67d..05c1cc736937 100644 --- a/include/linux/profile.h +++ b/include/linux/profile.h | |||
@@ -1,8 +1,6 @@ | |||
1 | #ifndef _LINUX_PROFILE_H | 1 | #ifndef _LINUX_PROFILE_H |
2 | #define _LINUX_PROFILE_H | 2 | #define _LINUX_PROFILE_H |
3 | 3 | ||
4 | #ifdef __KERNEL__ | ||
5 | |||
6 | #include <linux/kernel.h> | 4 | #include <linux/kernel.h> |
7 | #include <linux/init.h> | 5 | #include <linux/init.h> |
8 | #include <linux/cpumask.h> | 6 | #include <linux/cpumask.h> |
@@ -118,6 +116,4 @@ static inline void unregister_timer_hook(int (*hook)(struct pt_regs *)) | |||
118 | 116 | ||
119 | #endif /* CONFIG_PROFILING */ | 117 | #endif /* CONFIG_PROFILING */ |
120 | 118 | ||
121 | #endif /* __KERNEL__ */ | ||
122 | |||
123 | #endif /* _LINUX_PROFILE_H */ | 119 | #endif /* _LINUX_PROFILE_H */ |
diff --git a/include/linux/rcuclassic.h b/include/linux/rcuclassic.h index b3dccd68629e..b3aa05baab8a 100644 --- a/include/linux/rcuclassic.h +++ b/include/linux/rcuclassic.h | |||
@@ -33,8 +33,6 @@ | |||
33 | #ifndef __LINUX_RCUCLASSIC_H | 33 | #ifndef __LINUX_RCUCLASSIC_H |
34 | #define __LINUX_RCUCLASSIC_H | 34 | #define __LINUX_RCUCLASSIC_H |
35 | 35 | ||
36 | #ifdef __KERNEL__ | ||
37 | |||
38 | #include <linux/cache.h> | 36 | #include <linux/cache.h> |
39 | #include <linux/spinlock.h> | 37 | #include <linux/spinlock.h> |
40 | #include <linux/threads.h> | 38 | #include <linux/threads.h> |
@@ -163,5 +161,4 @@ extern long rcu_batches_completed_bh(void); | |||
163 | #define rcu_enter_nohz() do { } while (0) | 161 | #define rcu_enter_nohz() do { } while (0) |
164 | #define rcu_exit_nohz() do { } while (0) | 162 | #define rcu_exit_nohz() do { } while (0) |
165 | 163 | ||
166 | #endif /* __KERNEL__ */ | ||
167 | #endif /* __LINUX_RCUCLASSIC_H */ | 164 | #endif /* __LINUX_RCUCLASSIC_H */ |
diff --git a/include/linux/rcupdate.h b/include/linux/rcupdate.h index 37a642c54871..8082d6587a0f 100644 --- a/include/linux/rcupdate.h +++ b/include/linux/rcupdate.h | |||
@@ -33,8 +33,6 @@ | |||
33 | #ifndef __LINUX_RCUPDATE_H | 33 | #ifndef __LINUX_RCUPDATE_H |
34 | #define __LINUX_RCUPDATE_H | 34 | #define __LINUX_RCUPDATE_H |
35 | 35 | ||
36 | #ifdef __KERNEL__ | ||
37 | |||
38 | #include <linux/cache.h> | 36 | #include <linux/cache.h> |
39 | #include <linux/spinlock.h> | 37 | #include <linux/spinlock.h> |
40 | #include <linux/threads.h> | 38 | #include <linux/threads.h> |
@@ -245,5 +243,4 @@ extern long rcu_batches_completed_bh(void); | |||
245 | extern void rcu_init(void); | 243 | extern void rcu_init(void); |
246 | extern int rcu_needs_cpu(int cpu); | 244 | extern int rcu_needs_cpu(int cpu); |
247 | 245 | ||
248 | #endif /* __KERNEL__ */ | ||
249 | #endif /* __LINUX_RCUPDATE_H */ | 246 | #endif /* __LINUX_RCUPDATE_H */ |
diff --git a/include/linux/rcupreempt.h b/include/linux/rcupreempt.h index d038aa6e5ee1..8a05c7e20bc4 100644 --- a/include/linux/rcupreempt.h +++ b/include/linux/rcupreempt.h | |||
@@ -33,8 +33,6 @@ | |||
33 | #ifndef __LINUX_RCUPREEMPT_H | 33 | #ifndef __LINUX_RCUPREEMPT_H |
34 | #define __LINUX_RCUPREEMPT_H | 34 | #define __LINUX_RCUPREEMPT_H |
35 | 35 | ||
36 | #ifdef __KERNEL__ | ||
37 | |||
38 | #include <linux/cache.h> | 36 | #include <linux/cache.h> |
39 | #include <linux/spinlock.h> | 37 | #include <linux/spinlock.h> |
40 | #include <linux/threads.h> | 38 | #include <linux/threads.h> |
@@ -104,5 +102,4 @@ static inline void rcu_exit_nohz(void) | |||
104 | #define rcu_exit_nohz() do { } while (0) | 102 | #define rcu_exit_nohz() do { } while (0) |
105 | #endif /* CONFIG_NO_HZ */ | 103 | #endif /* CONFIG_NO_HZ */ |
106 | 104 | ||
107 | #endif /* __KERNEL__ */ | ||
108 | #endif /* __LINUX_RCUPREEMPT_H */ | 105 | #endif /* __LINUX_RCUPREEMPT_H */ |
diff --git a/include/linux/rcupreempt_trace.h b/include/linux/rcupreempt_trace.h index 21cd6b2a5c42..b99ae073192a 100644 --- a/include/linux/rcupreempt_trace.h +++ b/include/linux/rcupreempt_trace.h | |||
@@ -32,7 +32,6 @@ | |||
32 | #ifndef __LINUX_RCUPREEMPT_TRACE_H | 32 | #ifndef __LINUX_RCUPREEMPT_TRACE_H |
33 | #define __LINUX_RCUPREEMPT_TRACE_H | 33 | #define __LINUX_RCUPREEMPT_TRACE_H |
34 | 34 | ||
35 | #ifdef __KERNEL__ | ||
36 | #include <linux/types.h> | 35 | #include <linux/types.h> |
37 | #include <linux/kernel.h> | 36 | #include <linux/kernel.h> |
38 | 37 | ||
@@ -95,5 +94,4 @@ extern void rcupreempt_trace_done_remove(struct rcupreempt_trace *trace); | |||
95 | extern void rcupreempt_trace_invoke(struct rcupreempt_trace *trace); | 94 | extern void rcupreempt_trace_invoke(struct rcupreempt_trace *trace); |
96 | extern void rcupreempt_trace_next_add(struct rcupreempt_trace *trace); | 95 | extern void rcupreempt_trace_next_add(struct rcupreempt_trace *trace); |
97 | 96 | ||
98 | #endif /* __KERNEL__ */ | ||
99 | #endif /* __LINUX_RCUPREEMPT_TRACE_H */ | 97 | #endif /* __LINUX_RCUPREEMPT_TRACE_H */ |
diff --git a/include/linux/rio.h b/include/linux/rio.h index cfb66bbc0f27..c1c99c9643d3 100644 --- a/include/linux/rio.h +++ b/include/linux/rio.h | |||
@@ -14,8 +14,6 @@ | |||
14 | #ifndef LINUX_RIO_H | 14 | #ifndef LINUX_RIO_H |
15 | #define LINUX_RIO_H | 15 | #define LINUX_RIO_H |
16 | 16 | ||
17 | #ifdef __KERNEL__ | ||
18 | |||
19 | #include <linux/types.h> | 17 | #include <linux/types.h> |
20 | #include <linux/ioport.h> | 18 | #include <linux/ioport.h> |
21 | #include <linux/list.h> | 19 | #include <linux/list.h> |
@@ -331,5 +329,4 @@ extern void rio_close_inb_mbox(struct rio_mport *, int); | |||
331 | extern int rio_open_outb_mbox(struct rio_mport *, void *, int, int); | 329 | extern int rio_open_outb_mbox(struct rio_mport *, void *, int, int); |
332 | extern void rio_close_outb_mbox(struct rio_mport *, int); | 330 | extern void rio_close_outb_mbox(struct rio_mport *, int); |
333 | 331 | ||
334 | #endif /* __KERNEL__ */ | ||
335 | #endif /* LINUX_RIO_H */ | 332 | #endif /* LINUX_RIO_H */ |
diff --git a/include/linux/rio_drv.h b/include/linux/rio_drv.h index 7adb2a1aac92..90987b7bcc1b 100644 --- a/include/linux/rio_drv.h +++ b/include/linux/rio_drv.h | |||
@@ -13,8 +13,6 @@ | |||
13 | #ifndef LINUX_RIO_DRV_H | 13 | #ifndef LINUX_RIO_DRV_H |
14 | #define LINUX_RIO_DRV_H | 14 | #define LINUX_RIO_DRV_H |
15 | 15 | ||
16 | #ifdef __KERNEL__ | ||
17 | |||
18 | #include <linux/types.h> | 16 | #include <linux/types.h> |
19 | #include <linux/ioport.h> | 17 | #include <linux/ioport.h> |
20 | #include <linux/list.h> | 18 | #include <linux/list.h> |
@@ -465,5 +463,4 @@ extern struct rio_dev *rio_get_device(u16 vid, u16 did, struct rio_dev *from); | |||
465 | extern struct rio_dev *rio_get_asm(u16 vid, u16 did, u16 asm_vid, u16 asm_did, | 463 | extern struct rio_dev *rio_get_asm(u16 vid, u16 did, u16 asm_vid, u16 asm_did, |
466 | struct rio_dev *from); | 464 | struct rio_dev *from); |
467 | 465 | ||
468 | #endif /* __KERNEL__ */ | ||
469 | #endif /* LINUX_RIO_DRV_H */ | 466 | #endif /* LINUX_RIO_DRV_H */ |
diff --git a/include/linux/rwsem.h b/include/linux/rwsem.h index 7b524b4109a0..efd348fe8ca7 100644 --- a/include/linux/rwsem.h +++ b/include/linux/rwsem.h | |||
@@ -9,8 +9,6 @@ | |||
9 | 9 | ||
10 | #include <linux/linkage.h> | 10 | #include <linux/linkage.h> |
11 | 11 | ||
12 | #ifdef __KERNEL__ | ||
13 | |||
14 | #include <linux/types.h> | 12 | #include <linux/types.h> |
15 | #include <linux/kernel.h> | 13 | #include <linux/kernel.h> |
16 | #include <asm/system.h> | 14 | #include <asm/system.h> |
@@ -90,5 +88,4 @@ extern void up_read_non_owner(struct rw_semaphore *sem); | |||
90 | # define up_read_non_owner(sem) up_read(sem) | 88 | # define up_read_non_owner(sem) up_read(sem) |
91 | #endif | 89 | #endif |
92 | 90 | ||
93 | #endif /* __KERNEL__ */ | ||
94 | #endif /* _LINUX_RWSEM_H */ | 91 | #endif /* _LINUX_RWSEM_H */ |
diff --git a/include/linux/seq_file.h b/include/linux/seq_file.h index 5b5369c3c209..a66304a09955 100644 --- a/include/linux/seq_file.h +++ b/include/linux/seq_file.h | |||
@@ -1,6 +1,5 @@ | |||
1 | #ifndef _LINUX_SEQ_FILE_H | 1 | #ifndef _LINUX_SEQ_FILE_H |
2 | #define _LINUX_SEQ_FILE_H | 2 | #define _LINUX_SEQ_FILE_H |
3 | #ifdef __KERNEL__ | ||
4 | 3 | ||
5 | #include <linux/types.h> | 4 | #include <linux/types.h> |
6 | #include <linux/string.h> | 5 | #include <linux/string.h> |
@@ -69,4 +68,3 @@ extern struct list_head *seq_list_next(void *v, struct list_head *head, | |||
69 | loff_t *ppos); | 68 | loff_t *ppos); |
70 | 69 | ||
71 | #endif | 70 | #endif |
72 | #endif | ||
diff --git a/include/linux/slab.h b/include/linux/slab.h index 6d03c954f641..805ed4b92f9a 100644 --- a/include/linux/slab.h +++ b/include/linux/slab.h | |||
@@ -9,8 +9,6 @@ | |||
9 | #ifndef _LINUX_SLAB_H | 9 | #ifndef _LINUX_SLAB_H |
10 | #define _LINUX_SLAB_H | 10 | #define _LINUX_SLAB_H |
11 | 11 | ||
12 | #ifdef __KERNEL__ | ||
13 | |||
14 | #include <linux/gfp.h> | 12 | #include <linux/gfp.h> |
15 | #include <linux/types.h> | 13 | #include <linux/types.h> |
16 | 14 | ||
@@ -283,5 +281,4 @@ extern const struct seq_operations slabinfo_op; | |||
283 | ssize_t slabinfo_write(struct file *, const char __user *, size_t, loff_t *); | 281 | ssize_t slabinfo_write(struct file *, const char __user *, size_t, loff_t *); |
284 | #endif | 282 | #endif |
285 | 283 | ||
286 | #endif /* __KERNEL__ */ | ||
287 | #endif /* _LINUX_SLAB_H */ | 284 | #endif /* _LINUX_SLAB_H */ |
diff --git a/include/linux/smb_fs_i.h b/include/linux/smb_fs_i.h index 8516954a5141..8ccf4eca2c3d 100644 --- a/include/linux/smb_fs_i.h +++ b/include/linux/smb_fs_i.h | |||
@@ -9,7 +9,6 @@ | |||
9 | #ifndef _LINUX_SMB_FS_I | 9 | #ifndef _LINUX_SMB_FS_I |
10 | #define _LINUX_SMB_FS_I | 10 | #define _LINUX_SMB_FS_I |
11 | 11 | ||
12 | #ifdef __KERNEL__ | ||
13 | #include <linux/types.h> | 12 | #include <linux/types.h> |
14 | #include <linux/fs.h> | 13 | #include <linux/fs.h> |
15 | 14 | ||
@@ -36,4 +35,3 @@ struct smb_inode_info { | |||
36 | }; | 35 | }; |
37 | 36 | ||
38 | #endif | 37 | #endif |
39 | #endif | ||
diff --git a/include/linux/smb_fs_sb.h b/include/linux/smb_fs_sb.h index 3aa97aa4277f..8a060a7040d8 100644 --- a/include/linux/smb_fs_sb.h +++ b/include/linux/smb_fs_sb.h | |||
@@ -9,8 +9,6 @@ | |||
9 | #ifndef _SMB_FS_SB | 9 | #ifndef _SMB_FS_SB |
10 | #define _SMB_FS_SB | 10 | #define _SMB_FS_SB |
11 | 11 | ||
12 | #ifdef __KERNEL__ | ||
13 | |||
14 | #include <linux/types.h> | 12 | #include <linux/types.h> |
15 | #include <linux/smb.h> | 13 | #include <linux/smb.h> |
16 | 14 | ||
@@ -96,6 +94,4 @@ smb_unlock_server(struct smb_sb_info *server) | |||
96 | up(&(server->sem)); | 94 | up(&(server->sem)); |
97 | } | 95 | } |
98 | 96 | ||
99 | #endif /* __KERNEL__ */ | ||
100 | |||
101 | #endif | 97 | #endif |
diff --git a/include/linux/svga.h b/include/linux/svga.h index 13ad0b82ac28..c59a51a2b0e7 100644 --- a/include/linux/svga.h +++ b/include/linux/svga.h | |||
@@ -1,8 +1,6 @@ | |||
1 | #ifndef _LINUX_SVGA_H | 1 | #ifndef _LINUX_SVGA_H |
2 | #define _LINUX_SVGA_H | 2 | #define _LINUX_SVGA_H |
3 | 3 | ||
4 | #ifdef __KERNEL__ | ||
5 | |||
6 | #include <linux/pci.h> | 4 | #include <linux/pci.h> |
7 | #include <video/vga.h> | 5 | #include <video/vga.h> |
8 | 6 | ||
@@ -122,6 +120,5 @@ void svga_set_timings(const struct svga_timing_regs *tm, struct fb_var_screeninf | |||
122 | 120 | ||
123 | int svga_match_format(const struct svga_fb_format *frm, struct fb_var_screeninfo *var, struct fb_fix_screeninfo *fix); | 121 | int svga_match_format(const struct svga_fb_format *frm, struct fb_var_screeninfo *var, struct fb_fix_screeninfo *fix); |
124 | 122 | ||
125 | #endif /* __KERNEL__ */ | ||
126 | #endif /* _LINUX_SVGA_H */ | 123 | #endif /* _LINUX_SVGA_H */ |
127 | 124 | ||
diff --git a/include/linux/textsearch.h b/include/linux/textsearch.h index 004808a6df1d..6f371f24160b 100644 --- a/include/linux/textsearch.h +++ b/include/linux/textsearch.h | |||
@@ -1,8 +1,6 @@ | |||
1 | #ifndef __LINUX_TEXTSEARCH_H | 1 | #ifndef __LINUX_TEXTSEARCH_H |
2 | #define __LINUX_TEXTSEARCH_H | 2 | #define __LINUX_TEXTSEARCH_H |
3 | 3 | ||
4 | #ifdef __KERNEL__ | ||
5 | |||
6 | #include <linux/types.h> | 4 | #include <linux/types.h> |
7 | #include <linux/list.h> | 5 | #include <linux/list.h> |
8 | #include <linux/kernel.h> | 6 | #include <linux/kernel.h> |
@@ -177,6 +175,4 @@ static inline void *ts_config_priv(struct ts_config *conf) | |||
177 | return ((u8 *) conf + TS_PRIV_ALIGN(sizeof(struct ts_config))); | 175 | return ((u8 *) conf + TS_PRIV_ALIGN(sizeof(struct ts_config))); |
178 | } | 176 | } |
179 | 177 | ||
180 | #endif /* __KERNEL__ */ | ||
181 | |||
182 | #endif | 178 | #endif |