From: Fabio Estevam Date: Wed, 3 Jan 2018 14:55:36 +0000 (-0200) Subject: mx6memcal: spl: Disambiguate the error message X-Git-Tag: v2018.03-rc1~176^2~28 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=0f194018f2b431ce81606c2b6be7c8992d09c749;p=u-boot 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: Fabio Estevam --- diff --git a/board/freescale/mx6memcal/spl.c b/board/freescale/mx6memcal/spl.c index e8b992c2b6..027da4fbbc 100644 --- a/board/freescale/mx6memcal/spl.c +++ b/board/freescale/mx6memcal/spl.c @@ -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);