aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLinus Walleij <linus.walleij@linaro.org>2013-02-01 03:52:05 -0500
committerOlof Johansson <olof@lixom.net>2013-02-05 13:29:26 -0500
commitf015941f6b4a7d4d90c46a65bca17f2c2c41fb89 (patch)
treedae9b3fb6a6d5b48d58d188afb46771620b52959
parent604d11d99180806d94a9c48d76f96428dc5bcaa5 (diff)
ARM: nomadik: fix OF compilation regression
The Nomadik Device Tree patch series accidentally selected OF instead of USE_OF which led to problems during compile: arch/arm/kernel/devtree.c: In function 'arm_dt_memblock_reserve': /home/elinwal/linux-arm-soc/arch/arm/kernel/devtree.c:43:7: error: 'initial_boot_params' undeclared (first use in this function) (etc). This fixes it up by selecting USE_OF instead. Reported-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Olof Johansson <olof@lixom.net>
-rw-r--r--arch/arm/Kconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
index bef46edbe830..42ee64e68c43 100644
--- a/arch/arm/Kconfig
+++ b/arch/arm/Kconfig
@@ -904,7 +904,7 @@ config ARCH_NOMADIK
904 select CPU_ARM926T 904 select CPU_ARM926T
905 select GENERIC_CLOCKEVENTS 905 select GENERIC_CLOCKEVENTS
906 select MIGHT_HAVE_CACHE_L2X0 906 select MIGHT_HAVE_CACHE_L2X0
907 select OF 907 select USE_OF
908 select PINCTRL 908 select PINCTRL
909 select PINCTRL_STN8815 909 select PINCTRL_STN8815
910 select SPARSE_IRQ 910 select SPARSE_IRQ