diff options
author | Marek Vasut <marex@denx.de> | 2019-03-06 17:18:22 +0100 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2019-03-09 17:59:13 +0100 |
commit | dc3249b91b0c5dffdbd42426a3535bea5e14448f (patch) | |
tree | 3335a972ebbbef5160bd546b830efaea54052434 /drivers/ddr | |
parent | 71fc4825f72cc8f9a066e0a23d71e86242738561 (diff) | |
download | u-boot-dc3249b91b0c5dffdbd42426a3535bea5e14448f.tar.gz |
ddr: socfpga: Fix newline in debug print on A10
The debug print is missing a newline, add it.
Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Chin Liang See <chin.liang.see@intel.com>
Cc: Dinh Nguyen <dinguyen@kernel.org>
Cc: Simon Goldschmidt <simon.k.r.goldschmidt@gmail.com>
Cc: Tien Fong Chee <tien.fong.chee@intel.com>
Diffstat (limited to 'drivers/ddr')
-rw-r--r-- | drivers/ddr/altera/sdram_arria10.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ddr/altera/sdram_arria10.c b/drivers/ddr/altera/sdram_arria10.c index 6724eb29f1..be5ce778e8 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; } |