diff options
| author | Paul Gortmaker <[email protected]> | 2011-11-17 02:29:17 +0000 |
|---|---|---|
| committer | Paul Gortmaker <[email protected]> | 2012-03-07 20:04:04 +0000 |
| commit | 8bc3bcc93a2b4e47d5d410146f6546bca6171663 (patch) | |
| tree | 101f55a96f751749041c90c32ef1ba89f94dc4d1 /lib/syscall.c | |
| parent | fs: reduce the use of module.h wherever possible (diff) | |
| download | kernel-8bc3bcc93a2b4e47d5d410146f6546bca6171663.tar.gz kernel-8bc3bcc93a2b4e47d5d410146f6546bca6171663.zip | |
lib: reduce the use of module.h wherever possible
For files only using THIS_MODULE and/or EXPORT_SYMBOL, map
them onto including export.h -- or if the file isn't even
using those, then just delete the include. Fix up any implicit
include dependencies that were being masked by module.h along
the way.
Signed-off-by: Paul Gortmaker <[email protected]>
Diffstat (limited to 'lib/syscall.c')
| -rw-r--r-- | lib/syscall.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/syscall.c b/lib/syscall.c index a4f7067f72fa..58710eefeac8 100644 --- a/lib/syscall.c +++ b/lib/syscall.c @@ -1,6 +1,6 @@ #include <linux/ptrace.h> #include <linux/sched.h> -#include <linux/module.h> +#include <linux/export.h> #include <asm/syscall.h> static int collect_syscall(struct task_struct *target, long *callno, |
