diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2012-02-28 19:24:47 -0500 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2012-05-15 17:48:51 +0200 |
commit | 4ca98d399e66899222f1d457731b7857e85e09f1 (patch) | |
tree | 5d777d65ae6108073dcf52e9ab32f5763c6706d0 /arch/mips/include/asm/termios.h | |
parent | f9ded5692c96bae085713bf25558bd932fefeb7f (diff) | |
download | linux-4ca98d399e66899222f1d457731b7857e85e09f1.tar.bz2 |
MIPS: Delete bogus module.h usage in termios.h
There is no need for this. Removing it causes a small amount of fallout
(shown below) due to a few implicit header presence assumptions that are
easily fixed.
arch/mips/include/asm/termios.h:103: error: implicit declaration of function 'access_ok'
arch/mips/include/asm/module.h:17: error: expected specifier-qualifier-list before 'Elf64_Addr'
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/3449/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/include/asm/termios.h')
-rw-r--r-- | arch/mips/include/asm/termios.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/include/asm/termios.h b/arch/mips/include/asm/termios.h index 8f77f774a2a0..abdd87aaf609 100644 --- a/arch/mips/include/asm/termios.h +++ b/arch/mips/include/asm/termios.h @@ -60,7 +60,7 @@ struct termio { }; #ifdef __KERNEL__ -#include <linux/module.h> +#include <asm/uaccess.h> /* * intr=^C quit=^\ erase=del kill=^U |