aboutsummaryrefslogtreecommitdiff
path: root/board
diff options
context:
space:
mode:
authorFabio Estevam <fabio.estevam@nxp.com>2018-01-03 12:55:36 -0200
committerStefano Babic <sbabic@denx.de>2018-01-12 14:28:04 +0100
commit0f194018f2b431ce81606c2b6be7c8992d09c749 (patch)
tree809ea51abc4ddb2d4c2793398a8eacd4331dabb6 /board
parent941fcabfa762c2a8b26238ec5cce520253d7388b (diff)
downloadu-boot-0f194018f2b431ce81606c2b6be7c8992d09c749.zip
u-boot-0f194018f2b431ce81606c2b6be7c8992d09c749.tar.gz
u-boot-0f194018f2b431ce81606c2b6be7c8992d09c749.tar.bz2
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')
-rw-r--r--board/freescale/mx6memcal/spl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/freescale/mx6memcal/spl.c b/board/freescale/mx6memcal/spl.c
index e8b992c..027da4f 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);