diff options
author | Adrian Bunk <bunk@stusta.de> | 2007-05-02 19:27:10 +0200 |
---|---|---|
committer | Andi Kleen <andi@basil.nowhere.org> | 2007-05-02 19:27:10 +0200 |
commit | ca906e42312781c38b7a9625109fc65b937ca56c (patch) | |
tree | 16d0ce813e9765df803a83cc6584be541157928f /arch/x86_64/kernel/ioport.c | |
parent | 2bff73830c3df5f575d3bc21bf19df1a10bf7091 (diff) | |
download | blackbird-op-linux-ca906e42312781c38b7a9625109fc65b937ca56c.tar.gz blackbird-op-linux-ca906e42312781c38b7a9625109fc65b937ca56c.zip |
[PATCH] x86: sys_ioperm() prototype cleanup
- there's no reason for duplicating the prototype from
include/linux/syscalls.h in include/asm-x86_64/unistd.h
- every file should #include the headers containing the prototypes for
it's global functions
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Andi Kleen <ak@suse.de>
Diffstat (limited to 'arch/x86_64/kernel/ioport.c')
-rw-r--r-- | arch/x86_64/kernel/ioport.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86_64/kernel/ioport.c b/arch/x86_64/kernel/ioport.c index 745b1f0f494e..387d347b0e07 100644 --- a/arch/x86_64/kernel/ioport.c +++ b/arch/x86_64/kernel/ioport.c @@ -16,6 +16,7 @@ #include <linux/stddef.h> #include <linux/slab.h> #include <linux/thread_info.h> +#include <linux/syscalls.h> /* Set EXTENT bits starting at BASE in BITMAP to value TURN_ON. */ static void set_bitmap(unsigned long *bitmap, unsigned int base, unsigned int extent, int new_value) |