From: Simon Glass Date: Sat, 30 Jan 2016 23:37:42 +0000 (-0700) Subject: tegra: mmc: Fix comments in the MMC driver init X-Git-Tag: v2016.03-rc3~86^2~23 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e05ab0dae8a0bae52c46db2032f9a598fc5f4031;p=platform%2Fkernel%2Fu-boot.git tegra: mmc: Fix comments in the MMC driver init Fix the SoC names in two comments. Signed-off-by: Simon Glass Signed-off-by: Tom Warren --- diff --git a/drivers/mmc/tegra_mmc.c b/drivers/mmc/tegra_mmc.c index 1584865..573819a 100644 --- a/drivers/mmc/tegra_mmc.c +++ b/drivers/mmc/tegra_mmc.c @@ -674,7 +674,7 @@ void tegra_mmc_init(void) CONFIG_SYS_MMC_MAX_DEVICE); debug("%s: count of Tegra210 sdhci nodes is %d\n", __func__, count); if (process_nodes(blob, node_list, count)) { - printf("%s: Error processing T30 mmc node(s)!\n", __func__); + printf("%s: Error processing T210 mmc node(s)!\n", __func__); return; } @@ -684,7 +684,7 @@ void tegra_mmc_init(void) CONFIG_SYS_MMC_MAX_DEVICE); debug("%s: count of Tegra124 sdhci nodes is %d\n", __func__, count); if (process_nodes(blob, node_list, count)) { - printf("%s: Error processing T30 mmc node(s)!\n", __func__); + printf("%s: Error processing T124 mmc node(s)!\n", __func__); return; }