diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2009-02-24 20:37:55 -0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-04-03 14:54:24 -0700 |
commit | 2418a628ff9d1cfc4fecd9899f915326ff6e7b96 (patch) | |
tree | c9431871ec8578f7771dab20283bcd9c145c1460 | |
parent | 6d0d63bd7a9c0a6373c7759cb55580b806269dae (diff) |
Staging: p9auth: clean up #includes
Not all of these files needed to be included, clean up the list.
Cc: Ashwin Ganti <ashwin.ganti@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r-- | drivers/staging/p9auth/p9auth.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/drivers/staging/p9auth/p9auth.c b/drivers/staging/p9auth/p9auth.c index e2a8753ecd0..3cac89b26fa 100644 --- a/drivers/staging/p9auth/p9auth.c +++ b/drivers/staging/p9auth/p9auth.c @@ -6,33 +6,23 @@ * Released under the GPLv2 * */ -#include <linux/module.h> -#include <linux/moduleparam.h> #include <linux/init.h> #include <linux/kernel.h> +#include <linux/moduleparam.h> #include <linux/slab.h> #include <linux/fs.h> #include <linux/errno.h> -#include <linux/types.h> -#include <linux/proc_fs.h> #include <linux/fcntl.h> #include <linux/cdev.h> -#include <linux/syscalls.h> #include <linux/uaccess.h> #include <linux/list.h> -#include <linux/err.h> #include <linux/mm.h> #include <linux/string.h> #include <linux/crypto.h> #include <linux/highmem.h> -#include <linux/jiffies.h> -#include <linux/timex.h> -#include <linux/interrupt.h> #include <linux/scatterlist.h> -#include <linux/crypto.h> #include <linux/sched.h> #include <linux/cred.h> -#include <asm/system.h> #ifndef CAP_MAJOR #define CAP_MAJOR 0 |