From 9cf4d4a36438162c88a9fdac65dc0b6ef16571da Mon Sep 17 00:00:00 2001 From: Michal Simek Date: Tue, 5 Jan 2016 10:49:24 +0100 Subject: [PATCH] ARM: zynq: Remove memory division by 2 for ECC case For ECC case u-boot divided memory by 2 because one u-boot could be used for both cases when ECC is off or on. Remove this division and make sure that dts file contain the correct memory size when ECC is enabled. Signed-off-by: Michal Simek --- arch/arm/mach-zynq/ddrc.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/arch/arm/mach-zynq/ddrc.c b/arch/arm/mach-zynq/ddrc.c index 5b20accbcb1..d74f8dbbc45 100644 --- a/arch/arm/mach-zynq/ddrc.c +++ b/arch/arm/mach-zynq/ddrc.c @@ -42,8 +42,6 @@ void zynq_ddrc_init(void) */ /* cppcheck-suppress nullPointer */ memset((void *)0, 0, 1 * 1024 * 1024); - - gd->ram_size /= 2; } else { puts("ECC disabled "); } -- 2.47.3