mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH] ARM: omap: phytec-phycore-omap4460: Fix compiler warning
@ 2017-06-27 11:03 Sascha Hauer
  0 siblings, 0 replies; only message in thread
From: Sascha Hauer @ 2017-06-27 11:03 UTC (permalink / raw)
  To: Barebox List

Use IS_ENABLED() rather than #ifdef to get rid of unused variable
warning.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
---
 arch/arm/boards/phytec-phycore-omap4460/lowlevel.c | 26 +++++++++++-----------
 1 file changed, 13 insertions(+), 13 deletions(-)

diff --git a/arch/arm/boards/phytec-phycore-omap4460/lowlevel.c b/arch/arm/boards/phytec-phycore-omap4460/lowlevel.c
index 71ab793354..02297adb95 100644
--- a/arch/arm/boards/phytec-phycore-omap4460/lowlevel.c
+++ b/arch/arm/boards/phytec-phycore-omap4460/lowlevel.c
@@ -96,19 +96,19 @@ static void noinline pcm049_init_lowlevel(void)
 
 	set_muxconf_regs();
 
-#ifdef CONFIG_1024MB_DDR2RAM
-	omap4_ddr_init(&ddr_regs_mt42L64M64_25_400_mhz, &core);
-	writel(EMIF_SDRAM_CONFIG, OMAP44XX_EMIF1_BASE +
-			EMIF_LPDDR2_MODE_REG_CONFIG);
-	density = (readl(OMAP44XX_EMIF1_BASE + EMIF_LPDDR2_MODE_REG_DATA) &
-			LPDDR2_DENSITY_MASK) >> LPDDR2_DENSITY_SHIFT;
-	if (density == LPDDR2_2G)
-		omap4_ddr_init(&ddr_regs_mt42L128M64_25_400_mhz, &core);
-	else if (density == LPDDR2_4G)
-		omap4_ddr_init(&ddr_regs_mt42L128M64D2LL_25_400_mhz, &core);
-#else
-	omap4_ddr_init(&ddr_regs_mt42L64M64_25_400_mhz, &core);
-#endif
+	if (IS_ENABLED(CONFIG_1024MB_DDR2RAM)) {
+		omap4_ddr_init(&ddr_regs_mt42L64M64_25_400_mhz, &core);
+		writel(EMIF_SDRAM_CONFIG, OMAP44XX_EMIF1_BASE +
+		       EMIF_LPDDR2_MODE_REG_CONFIG);
+		density = (readl(OMAP44XX_EMIF1_BASE + EMIF_LPDDR2_MODE_REG_DATA) &
+			   LPDDR2_DENSITY_MASK) >> LPDDR2_DENSITY_SHIFT;
+		if (density == LPDDR2_2G)
+			omap4_ddr_init(&ddr_regs_mt42L128M64_25_400_mhz, &core);
+		else if (density == LPDDR2_4G)
+			omap4_ddr_init(&ddr_regs_mt42L128M64D2LL_25_400_mhz, &core);
+	} else {
+		omap4_ddr_init(&ddr_regs_mt42L64M64_25_400_mhz, &core);
+	}
 
 	/* Set VCORE1 = 1.3 V, VCORE2 = VCORE3 = 1.21V */
 	if (rev < OMAP4460_ES1_0)
-- 
2.11.0


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2017-06-27 11:04 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-06-27 11:03 [PATCH] ARM: omap: phytec-phycore-omap4460: Fix compiler warning Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox