mirror of
https://xff.cz/git/u-boot/
synced 2025-10-27 16:43:32 +01:00
powerpc/mpc8xxx: reword max tCKmin message
Reword "The DIMM max tCKmin is ..." to "The DDR clock is faster than the slowest DIMM(s) can support". Fixed interger type in printf as well. Signed-off-by: York Sun <yorksun@freescale.com> Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
This commit is contained in:
@@ -38,9 +38,9 @@ compute_cas_latency_ddr3(const dimm_params_t *dimm_params,
|
|||||||
}
|
}
|
||||||
/* validate if the memory clk is in the range of dimms */
|
/* validate if the memory clk is in the range of dimms */
|
||||||
if (mclk_ps < tCKmin_X_ps) {
|
if (mclk_ps < tCKmin_X_ps) {
|
||||||
printf("The DIMM max tCKmin is %d ps,"
|
printf("DDR clock (MCLK cycle %u ps) is faster than "
|
||||||
"doesn't support the MCLK cycle %d ps\n",
|
"the slowest DIMM(s) (tCKmin %u ps) can support.\n",
|
||||||
tCKmin_X_ps, mclk_ps);
|
mclk_ps, tCKmin_X_ps);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
/* determine the acutal cas latency */
|
/* determine the acutal cas latency */
|
||||||
|
|||||||
Reference in New Issue
Block a user