diff options
author | Thomas Koeller <thomas.koeller@baslerweb.com> | 2010-04-21 15:33:32 +0200 |
---|---|---|
committer | Kevin Hilman <khilman@deeprootsystems.com> | 2010-05-06 15:02:07 -0700 |
commit | 280faffb4e059b3f453e297af7060d9c277c0ca9 (patch) | |
tree | d71b00d4411ebbd3484319abfc1dd7fb37697027 /arch/arm/mach-davinci | |
parent | d6961e6889a26de427aa6e0df823c789cf4a848f (diff) | |
download | op-kernel-dev-280faffb4e059b3f453e297af7060d9c277c0ca9.zip op-kernel-dev-280faffb4e059b3f453e297af7060d9c277c0ca9.tar.gz |
davinci: mach/common.h: add missing includes
linux/compiler.h is required for __iomem
linux/types.h is required u32
Signed-off-by: Thomas Koeller <thomas.koeller@baslerweb.com>
Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
Diffstat (limited to 'arch/arm/mach-davinci')
-rw-r--r-- | arch/arm/mach-davinci/include/mach/common.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/mach-davinci/include/mach/common.h b/arch/arm/mach-davinci/include/mach/common.h index 50a955f..d88104e 100644 --- a/arch/arm/mach-davinci/include/mach/common.h +++ b/arch/arm/mach-davinci/include/mach/common.h @@ -12,6 +12,9 @@ #ifndef __ARCH_ARM_MACH_DAVINCI_COMMON_H #define __ARCH_ARM_MACH_DAVINCI_COMMON_H +#include <linux/compiler.h> +#include <linux/types.h> + struct sys_timer; extern struct sys_timer davinci_timer; |