diff mbox series

[U-Boot,v2,01/78] mpc8308rdb: Fix style violation

Message ID 20171213071946.6181-1-mario.six@gdsys.cc
State Superseded, archived
Delegated to: Mario Six
Headers show
Series [U-Boot,v2,01/78] mpc8308rdb: Fix style violation | expand

Commit Message

Mario Six Dec. 13, 2017, 7:18 a.m. UTC
Fix a indention style violation in the freescale MPC8308RDB SDRAM code.

Signed-off-by: Mario Six <mario.six@gdsys.cc>
---

v1 -> v2:
None

---
 board/freescale/mpc8308rdb/sdram.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--
2.13.6
diff mbox series

Patch

diff --git a/board/freescale/mpc8308rdb/sdram.c b/board/freescale/mpc8308rdb/sdram.c
index 81e155a401..cea248f724 100644
--- a/board/freescale/mpc8308rdb/sdram.c
+++ b/board/freescale/mpc8308rdb/sdram.c
@@ -34,7 +34,7 @@  static long fixed_sdram(void)
 	u32 msize_log2 = __ilog2(msize);

 	out_be32(&im->sysconf.ddrlaw[0].bar,
-			CONFIG_SYS_DDR_SDRAM_BASE  & 0xfffff000);
+		 CONFIG_SYS_DDR_SDRAM_BASE  & 0xfffff000);
 	out_be32(&im->sysconf.ddrlaw[0].ar, LBLAWAR_EN | (msize_log2 - 1));
 	out_be32(&im->sysconf.ddrcdr, CONFIG_SYS_DDRCDR_VALUE);