mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-06-26 00:21:37 +00:00
ddr: altera: Fix debug message format in sequencer
The debug messages missed proper newlines and/or spaces in them. Fix the formatting. Signed-off-by: Marek Vasut <marex@denx.de> Cc: Chin Liang See <clsee@altera.com> Cc: Dinh Nguyen <dinguyen@altera.com> Cc: Tom Rini <trini@konsulko.com>
This commit is contained in:
parent
452a81e078
commit
7ac40d25cf
1 changed files with 7 additions and 7 deletions
|
@ -332,7 +332,7 @@ static void scc_mgr_initialize(void)
|
||||||
*/
|
*/
|
||||||
uint32_t i;
|
uint32_t i;
|
||||||
for (i = 0; i < 16; i++) {
|
for (i = 0; i < 16; i++) {
|
||||||
debug_cond(DLEVEL == 1, "%s:%d: Clearing SCC RFILE index %u",
|
debug_cond(DLEVEL == 1, "%s:%d: Clearing SCC RFILE index %u\n",
|
||||||
__func__, __LINE__, i);
|
__func__, __LINE__, i);
|
||||||
writel(0, SOCFPGA_SDR_ADDRESS + addr + (i << 2));
|
writel(0, SOCFPGA_SDR_ADDRESS + addr + (i << 2));
|
||||||
}
|
}
|
||||||
|
@ -2386,7 +2386,7 @@ static uint32_t rw_mgr_mem_calibrate_vfifo(uint32_t read_group,
|
||||||
uint32_t write_group, write_test_bgn;
|
uint32_t write_group, write_test_bgn;
|
||||||
uint32_t failed_substage;
|
uint32_t failed_substage;
|
||||||
|
|
||||||
debug("%s:%d: %u %u", __func__, __LINE__, read_group, test_bgn);
|
debug("%s:%d: %u %u\n", __func__, __LINE__, read_group, test_bgn);
|
||||||
|
|
||||||
/* update info for sims */
|
/* update info for sims */
|
||||||
reg_file_set_stage(CAL_STAGE_VFIFO);
|
reg_file_set_stage(CAL_STAGE_VFIFO);
|
||||||
|
@ -4020,7 +4020,7 @@ int sdram_calibration_full(void)
|
||||||
(long unsigned int)IO_IO_IN_DELAY_MAX,
|
(long unsigned int)IO_IO_IN_DELAY_MAX,
|
||||||
(long unsigned int)IO_IO_OUT1_DELAY_MAX,
|
(long unsigned int)IO_IO_OUT1_DELAY_MAX,
|
||||||
(long unsigned int)IO_IO_OUT2_DELAY_MAX);
|
(long unsigned int)IO_IO_OUT2_DELAY_MAX);
|
||||||
debug_cond(DLEVEL == 1, "dqs_in_reserve=%lu dqs_out_reserve=%lu",
|
debug_cond(DLEVEL == 1, "dqs_in_reserve=%lu dqs_out_reserve=%lu\n",
|
||||||
(long unsigned int)IO_DQS_IN_RESERVE,
|
(long unsigned int)IO_DQS_IN_RESERVE,
|
||||||
(long unsigned int)IO_DQS_OUT_RESERVE);
|
(long unsigned int)IO_DQS_OUT_RESERVE);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue