aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@suse.de>2009-02-24 23:37:55 -0500
committerGreg Kroah-Hartman <gregkh@suse.de>2009-04-03 17:54:24 -0400
commit2418a628ff9d1cfc4fecd9899f915326ff6e7b96 (patch)
treec9431871ec8578f7771dab20283bcd9c145c1460
parent6d0d63bd7a9c0a6373c7759cb55580b806269dae (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.c12
1 files changed, 1 insertions, 11 deletions
diff --git a/drivers/staging/p9auth/p9auth.c b/drivers/staging/p9auth/p9auth.c
index e2a8753ecd0c..3cac89b26faf 100644
--- a/drivers/staging/p9auth/p9auth.c
+++ b/drivers/staging/p9auth/p9auth.c
@@ -6,33 +6,23 @@
6 * Released under the GPLv2 6 * Released under the GPLv2
7 * 7 *
8 */ 8 */
9#include <linux/module.h>
10#include <linux/moduleparam.h>
11#include <linux/init.h> 9#include <linux/init.h>
12#include <linux/kernel.h> 10#include <linux/kernel.h>
11#include <linux/moduleparam.h>
13#include <linux/slab.h> 12#include <linux/slab.h>
14#include <linux/fs.h> 13#include <linux/fs.h>
15#include <linux/errno.h> 14#include <linux/errno.h>
16#include <linux/types.h>
17#include <linux/proc_fs.h>
18#include <linux/fcntl.h> 15#include <linux/fcntl.h>
19#include <linux/cdev.h> 16#include <linux/cdev.h>
20#include <linux/syscalls.h>
21#include <linux/uaccess.h> 17#include <linux/uaccess.h>
22#include <linux/list.h> 18#include <linux/list.h>
23#include <linux/err.h>
24#include <linux/mm.h> 19#include <linux/mm.h>
25#include <linux/string.h> 20#include <linux/string.h>
26#include <linux/crypto.h> 21#include <linux/crypto.h>
27#include <linux/highmem.h> 22#include <linux/highmem.h>
28#include <linux/jiffies.h>
29#include <linux/timex.h>
30#include <linux/interrupt.h>
31#include <linux/scatterlist.h> 23#include <linux/scatterlist.h>
32#include <linux/crypto.h>
33#include <linux/sched.h> 24#include <linux/sched.h>
34#include <linux/cred.h> 25#include <linux/cred.h>
35#include <asm/system.h>
36 26
37#ifndef CAP_MAJOR 27#ifndef CAP_MAJOR
38#define CAP_MAJOR 0 28#define CAP_MAJOR 0