diff options
author | Adrian Bunk <bunk@stusta.de> | 2007-07-17 04:03:45 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-17 10:23:03 -0700 |
commit | 62239ac2b301abc397e70986649666cfb7835907 (patch) | |
tree | 296ddcc9a0aa9ce847b9eab3eb3af29e8c148f13 /kernel | |
parent | f284ce7269031947326bac6bb19a977705276222 (diff) | |
download | kernel_samsung_smdk4412-62239ac2b301abc397e70986649666cfb7835907.zip kernel_samsung_smdk4412-62239ac2b301abc397e70986649666cfb7835907.tar.gz kernel_samsung_smdk4412-62239ac2b301abc397e70986649666cfb7835907.tar.bz2 |
proper prototype for proc_nr_files()
Add a proper prototype for proc_nr_files() in include/linux/fs.h
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/sysctl.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/kernel/sysctl.c b/kernel/sysctl.c index 48dae07..7063ebc 100644 --- a/kernel/sysctl.c +++ b/kernel/sysctl.c @@ -29,6 +29,7 @@ #include <linux/utsname.h> #include <linux/capability.h> #include <linux/smp_lock.h> +#include <linux/fs.h> #include <linux/init.h> #include <linux/kernel.h> #include <linux/kobject.h> @@ -49,9 +50,6 @@ #include <asm/uaccess.h> #include <asm/processor.h> -extern int proc_nr_files(ctl_table *table, int write, struct file *filp, - void __user *buffer, size_t *lenp, loff_t *ppos); - #ifdef CONFIG_X86 #include <asm/nmi.h> #include <asm/stacktrace.h> |