From: Heinrich Schuchardt <xypron.glpk@gmx.de>
Date: Sat, 6 Jan 2018 23:54:20 +0000 (+0100)
Subject: board_r: remove superfluous #ifdef CONFIG_PRAM
X-Git-Tag: v2025.01-rc5-pxa1908~5097
X-Git-Url: http://git.dujemihanovic.xyz/html/static/git-logo.png?a=commitdiff_plain;h=7341714d6e489fd2b552181deae1e5dca2d85b52;p=u-boot.git

board_r: remove superfluous #ifdef CONFIG_PRAM

initr_mem() is already enclosed by
	#if defined(CONFIG_PRAM)
	#endif

So there is no need to check CONFIG_PRAM again inside the
function.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Reviewed-by: Simon Glass <sjg@chromium.org>
---

diff --git a/common/board_r.c b/common/board_r.c
index 2a9df6b716..2baa47f3a0 100644
--- a/common/board_r.c
+++ b/common/board_r.c
@@ -624,9 +624,7 @@ int initr_mem(void)
 	ulong pram = 0;
 	char memsz[32];
 
-# ifdef CONFIG_PRAM
 	pram = env_get_ulong("pram", 10, CONFIG_PRAM);
-# endif
 	sprintf(memsz, "%ldk", (long int) ((gd->ram_size / 1024) - pram));
 	env_set("mem", memsz);