From 2b8cae2a549603d9ebd83ed7f02f67d812fe7ac2 Mon Sep 17 00:00:00 2001 From: Tushar Behera Date: Tue, 4 Sep 2012 11:15:48 +0530 Subject: Add debug print statement Signed-off-by: Tushar Behera --- arch/arm/include/asm/arch-exynos/mmc.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/arch/arm/include/asm/arch-exynos/mmc.h b/arch/arm/include/asm/arch-exynos/mmc.h index afdfcf049..222a6eaf6 100644 --- a/arch/arm/include/asm/arch-exynos/mmc.h +++ b/arch/arm/include/asm/arch-exynos/mmc.h @@ -21,6 +21,8 @@ #ifndef __ASM_ARCH_MMC_H_ #define __ASM_ARCH_MMC_H_ +#include + #define SDHCI_CONTROL2 0x80 #define SDHCI_CONTROL3 0x84 #define SDHCI_CONTROL4 0x8C @@ -69,6 +71,9 @@ int s5p_sdhci_init(u32 regbase, int index, int bus_width); static inline unsigned int s5p_mmc_init(int index, int bus_width) { unsigned int base = samsung_get_base_mmc() + (0x10000 * index); + + printf("%s: index = %d, bus_width = %d\n", __func__, index, bus_width); + return s5p_sdhci_init(base, index, bus_width); } #endif -- cgit v1.2.3