Skip to content
Snippets Groups Projects
Commit 0f194018 authored by Fabio Estevam's avatar Fabio Estevam Committed by Stefano Babic
Browse files

mx6memcal: spl: Disambiguate the error message


Currently mmdc_do_dqs_calibration() and mmdc_do_write_level_calibration()
show the same error message, which is confusing for debugging.

Disambiguate the mmdc_do_dqs_calibration() error message.

Signed-off-by: default avatarFabio Estevam <fabio.estevam@nxp.com>
parent 941fcabf
No related branches found
No related tags found
No related merge requests found
......@@ -446,7 +446,7 @@ void board_init_f(ulong dummy)
} else {
errs = mmdc_do_dqs_calibration(&sysinfo);
if (errs) {
printf("error %d from write level calibration\n", errs);
printf("error %d from dqs calibration\n", errs);
} else {
printf("completed successfully\n");
mmdc_read_calibration(&sysinfo, &calibration);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment