diff options
author | Lubomir Rintel <lkundrak@v3.sk> | 2017-10-31 09:42:38 +0100 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2018-01-15 00:44:43 +0000 |
commit | fd470f7163709c1022ee6185134a2387812774ec (patch) | |
tree | 89c2393dd0614fa21cf373af08c25dfe89e33e3f /src | |
parent | c1633045be5d84a1b8a9210357ba1a3dacfe6707 (diff) |
vx900: fix format strings for DEBUG_RAM_SETUP=y
Change-Id: I990969cf1389c19032c4a0fafbdef45b9d6d1e8b
Signed-off-by: Lubomir Rintel <lkundrak@v3.sk>
Reviewed-on: https://review.coreboot.org/22257
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/northbridge/via/vx900/raminit_ddr3.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/northbridge/via/vx900/raminit_ddr3.c b/src/northbridge/via/vx900/raminit_ddr3.c index 56ec5fda1a..eec4aa357f 100644 --- a/src/northbridge/via/vx900/raminit_ddr3.c +++ b/src/northbridge/via/vx900/raminit_ddr3.c @@ -897,7 +897,7 @@ static void vx900_dram_ddr3_dimm_init(const ramctr_timing * ctrl, for (i = 0; i < VX900_MAX_MEM_RANKS; i++) { if (ranks->phys_rank_size_mb[i] == 0) continue; - printram("Initializing rank %lu\n", i); + printram("Initializing rank %zu\n", i); /* Set target physical rank to virtual rank 0 * other ranks to virtual rank 3*/ @@ -1283,7 +1283,7 @@ static void vx900_dram_calibrate_recieve_delays(vx900_delay_calib * delays, break; } if (n_tries > 1) - printram("Hmm, we had to try %lu times before our calibration " + printram("Hmm, we had to try %zu times before our calibration " "was good.\n", n_tries); } @@ -1340,7 +1340,7 @@ static void vx900_dram_calibrate_transmit_delays(delay_range * tx_dq, break; } if (n_tries > 1) - printram("Hmm, we had to try %lu times before our calibration " + printram("Hmm, we had to try %zu times before our calibration " "was good.\n", n_tries); } @@ -1575,7 +1575,7 @@ static void vx900_dram_map_row_col_bank(dimm_info * dimms) * column address bits. */ if ((col_bits < 10) || (col_bits > 11)) { - printram("DIMM %ld has %d column address bits.\n", + printram("DIMM %zd has %d column address bits.\n", i, col_bits); die("Unsupported DIMM. Try booting without this DIMM"); } |