From: Simon Glass Date: Fri, 3 Jul 2015 00:16:12 +0000 (-0600) Subject: exynos: Correct return value in exynos_mmc_init() X-Git-Tag: v2025.01-rc5-pxa1908~12382^2~42 X-Git-Url: http://git.dujemihanovic.xyz/%22http:/www.sics.se/static/%7B%7B%20%24.Site.BaseURL%20%7D%7Dposts/index.xml?a=commitdiff_plain;h=c95ed7d9e76e81c3728438ccbd3bbd119cf46886;p=u-boot.git exynos: Correct return value in exynos_mmc_init() This function should return 0 on success, not 1. Fix it. Signed-off-by: Simon Glass --- diff --git a/drivers/mmc/s5p_sdhci.c b/drivers/mmc/s5p_sdhci.c index 8e1968a4ea..522eab9bbf 100644 --- a/drivers/mmc/s5p_sdhci.c +++ b/drivers/mmc/s5p_sdhci.c @@ -202,6 +202,6 @@ int exynos_mmc_init(const void *blob) process_nodes(blob, node_list, count); - return 1; + return 0; } #endif