From: Tom Rini <trini@ti.com>
Date: Thu, 14 Mar 2013 06:49:04 +0000 (+0000)
Subject: arm: Correct CONFIG_STANDALONE_LOAD_ADDR for AM33XX/OMAP* platforms
X-Git-Tag: v2025.01-rc5-pxa1908~16341^2~6^2~2
X-Git-Url: http://git.dujemihanovic.xyz/html/static/git-logo.png?a=commitdiff_plain;h=bd380cf4cf9ae5b970f09784a90132bee80ee5d0;p=u-boot.git

arm: Correct CONFIG_STANDALONE_LOAD_ADDR for AM33XX/OMAP* platforms

All of these platforms have memory starting at 0x80000000, so this is
the correct CONFIG_STANDALONE_LOAD_ADDR for all of them.

Acked-by: Peter Korsgaard <jacmet@sunsite.dk>
Signed-off-by: Tom Rini <trini@ti.com>
---

diff --git a/arch/arm/config.mk b/arch/arm/config.mk
index a0c89b7971..e7839beced 100644
--- a/arch/arm/config.mk
+++ b/arch/arm/config.mk
@@ -24,7 +24,7 @@
 CROSS_COMPILE ?= arm-linux-
 
 ifndef CONFIG_STANDALONE_LOAD_ADDR
-ifeq ($(SOC),omap3)
+ifneq ($(CONFIG_AM33XX)$(CONFIG_OMAP34XX)$(CONFIG_OMAP44XX)$(CONFIG_OMAP54XX)$(CONFIG_TI814X),)
 CONFIG_STANDALONE_LOAD_ADDR = 0x80300000
 else
 CONFIG_STANDALONE_LOAD_ADDR = 0xc100000