diff options
author | Fabio Estevam <fabio.estevam@nxp.com> | 2018-01-03 12:55:36 -0200 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2018-01-12 14:28:04 +0100 |
commit | 0f194018f2b431ce81606c2b6be7c8992d09c749 (patch) | |
tree | 809ea51abc4ddb2d4c2793398a8eacd4331dabb6 /board/freescale | |
parent | 941fcabfa762c2a8b26238ec5cce520253d7388b (diff) | |
download | u-boot-0f194018f2b431ce81606c2b6be7c8992d09c749.tar.gz u-boot-0f194018f2b431ce81606c2b6be7c8992d09c749.tar.xz u-boot-0f194018f2b431ce81606c2b6be7c8992d09c749.zip |
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 <fabio.estevam@nxp.com>
Diffstat (limited to 'board/freescale')
-rw-r--r-- | board/freescale/mx6memcal/spl.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |