diff mbox

[U-Boot,v2,1/6] image: fix build when CONFIG_NR_DRAM_BANKS is disabled on ARM

Message ID 1429637818-11529-2-git-send-email-mporter@konsulko.com
State Superseded
Delegated to: Tom Rini
Headers show

Commit Message

Matt Porter April 21, 2015, 5:36 p.m. UTC
common/image.c currently implicitly depends on CONFIG_NR_DRAM_BANKS
when CONFIG_ARM is enabled. Make this requirement explicit.

Signed-off-by: Matt Porter <mporter@konsulko.com>
---
 common/image.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox

Patch

diff --git a/common/image.c b/common/image.c
index 162b682..73c24f5 100644
--- a/common/image.c
+++ b/common/image.c
@@ -461,7 +461,7 @@  phys_size_t getenv_bootm_size(void)
 		tmp = 0;
 
 
-#if defined(CONFIG_ARM)
+#if defined(CONFIG_ARM) && defined(CONFIG_NR_DRAM_BANKS)
 	return gd->bd->bi_dram[0].size - tmp;
 #else
 	return gd->bd->bi_memsize - tmp;