summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Vasut <[email protected]>2019-03-06 17:18:22 +0100
committerMarek Vasut <[email protected]>2019-03-09 17:59:13 +0100
commitdc3249b91b0c5dffdbd42426a3535bea5e14448f (patch)
tree3335a972ebbbef5160bd546b830efaea54052434
parent71fc4825f72cc8f9a066e0a23d71e86242738561 (diff)
ddr: socfpga: Fix newline in debug print on A10
The debug print is missing a newline, add it. Signed-off-by: Marek Vasut <[email protected]> Cc: Chin Liang See <[email protected]> Cc: Dinh Nguyen <[email protected]> Cc: Simon Goldschmidt <[email protected]> Cc: Tien Fong Chee <[email protected]>
-rw-r--r--drivers/ddr/altera/sdram_arria10.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ddr/altera/sdram_arria10.c b/drivers/ddr/altera/sdram_arria10.c
index 6724eb29f1e..be5ce778e8c 100644
--- a/drivers/ddr/altera/sdram_arria10.c
+++ b/drivers/ddr/altera/sdram_arria10.c
@@ -270,7 +270,7 @@ static u64 sdram_size_calc(void)
size *= (2 << (readl(&socfpga_ecc_hmc_base->ddrioctrl) &
ALT_ECC_HMC_OCP_DDRIOCTRL_IO_SIZE_MSK));
- debug("SDRAM size=%llu", size);
+ debug("SDRAM size=%llu\n", size);
return size;
}