projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
71fc482
)
ddr: socfpga: Fix newline in debug print on A10
author
Marek Vasut
<
[email protected]
>
Wed, 6 Mar 2019 16:18:22 +0000
(17:18 +0100)
committer
Marek Vasut
<
[email protected]
>
Sat, 9 Mar 2019 16:59:13 +0000
(17:59 +0100)
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]
>
drivers/ddr/altera/sdram_arria10.c
patch
|
blob
|
history
diff --git
a/drivers/ddr/altera/sdram_arria10.c
b/drivers/ddr/altera/sdram_arria10.c
index 6724eb29f1e9831405a2309e1cca395d351adadd..be5ce778e8c7e483b264042ae13632d3e7eab033 100644
(file)
--- 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;
}