diff options
author | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-31 10:41:59 +0530 |
---|---|---|
committer | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-02-01 11:01:22 +0530 |
commit | 4af3bf6b393a2cec947cd42cc10fc03f5b782484 (patch) | |
tree | e145d92550e9f83bd6cc217467bf389b7a2b061b /arch/arm/include | |
parent | f100e6d0368742ddb8b6b9be986536e63117c05a (diff) | |
download | kernel_samsung_smdk4412-4af3bf6b393a2cec947cd42cc10fc03f5b782484.zip kernel_samsung_smdk4412-4af3bf6b393a2cec947cd42cc10fc03f5b782484.tar.gz kernel_samsung_smdk4412-4af3bf6b393a2cec947cd42cc10fc03f5b782484.tar.bz2 |
headers_check fix: arm, setup.h
fix the following 'make headers_check' warnings:
usr/include/asm-arm/setup.h:17: include of <linux/types.h> is preferred over <asm/types.h>
usr/include/asm-arm/setup.h:25: found __[us]{8,16,32,64} type without #include <linux/types.h>
Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com>
Diffstat (limited to 'arch/arm/include')
-rw-r--r-- | arch/arm/include/asm/setup.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/include/asm/setup.h b/arch/arm/include/asm/setup.h index f2cd18a..ee1304f 100644 --- a/arch/arm/include/asm/setup.h +++ b/arch/arm/include/asm/setup.h @@ -14,7 +14,7 @@ #ifndef __ASMARM_SETUP_H #define __ASMARM_SETUP_H -#include <asm/types.h> +#include <linux/types.h> #define COMMAND_LINE_SIZE 1024 |