diff options
author | Linus Walleij <linus.walleij@linaro.org> | 2011-06-16 08:26:06 +0100 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2011-06-17 11:25:03 +0100 |
commit | 343fda59823ca20f48578f816ec12e741214f509 (patch) | |
tree | 9cf1b578f58a719a4b087f7fd2fc383f3e25d4bc /arch | |
parent | 2bc58a6fd76f89052c7f151d78fb2d8b804aacfe (diff) | |
download | linux-3.10-343fda59823ca20f48578f816ec12e741214f509.tar.gz linux-3.10-343fda59823ca20f48578f816ec12e741214f509.tar.bz2 linux-3.10-343fda59823ca20f48578f816ec12e741214f509.zip |
ARM: 6962/1: mach-h720x: fix build error
The h7201/h7202 machines did not build since they define
ARM_DMA_ZONE_OFFSET but do not select ZONE_DMA. Fix it up by
selecting ZONE_DMA in their Kconfig.
Cc: Sascha Hauer <s.hauer@pengutronix.de>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-h720x/Kconfig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/mach-h720x/Kconfig b/arch/arm/mach-h720x/Kconfig index 9b6982efbd2..abf356c0234 100644 --- a/arch/arm/mach-h720x/Kconfig +++ b/arch/arm/mach-h720x/Kconfig @@ -6,12 +6,14 @@ config ARCH_H7201 bool "gms30c7201" depends on ARCH_H720X select CPU_H7201 + select ZONE_DMA help Say Y here if you are using the Hynix GMS30C7201 Reference Board config ARCH_H7202 bool "hms30c7202" select CPU_H7202 + select ZONE_DMA depends on ARCH_H720X help Say Y here if you are using the Hynix HMS30C7202 Reference Board |