diff options
author | Ricardo Martins <rasm@fe.up.pt> | 2009-05-11 00:15:08 +0100 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2009-05-16 19:55:56 +0100 |
commit | 776abac81764847338a6a02c34609d4b8dfb4918 (patch) | |
tree | cbde6a878c45976c9306a23bacd7ecd5b0406673 /arch | |
parent | ff05c0330b9880f9ccbb7fa40f2ed3b5842f5693 (diff) | |
download | op-kernel-dev-776abac81764847338a6a02c34609d4b8dfb4918.zip op-kernel-dev-776abac81764847338a6a02c34609d4b8dfb4918.tar.gz |
[ARM] 5513/1: Eurotech VIPER SBC: fix compilation error
Compilation for this board yields the following errors:
arch/arm/mach-pxa/viper.c:511: error: 'FFUART' undeclared here (not in a function)
arch/arm/mach-pxa/viper.c:520: error: 'BTUART' undeclared here (not in a function)
arch/arm/mach-pxa/viper.c:529: error: 'STUART' undeclared here (not in a function)
Fix them by including the necessary header.
Signed-off-by: Ricardo Martins <rasm@fe.up.pt>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-pxa/viper.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-pxa/viper.c b/arch/arm/mach-pxa/viper.c index 0e65344..dd031cc 100644 --- a/arch/arm/mach-pxa/viper.c +++ b/arch/arm/mach-pxa/viper.c @@ -46,6 +46,7 @@ #include <mach/audio.h> #include <mach/pxafb.h> #include <mach/i2c.h> +#include <mach/regs-uart.h> #include <mach/viper.h> #include <asm/setup.h> |