From: Dirk Behme Date: Sun, 15 May 2011 09:04:47 +0000 (+0000) Subject: MMC: omap_hsmmc.c: Add missing prototype header X-Git-Tag: v2011.06-rc1~19 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=96e0e7b36c5c335e7a551537f3a19dec0cd53356;p=platform%2Fkernel%2Fu-boot.git MMC: omap_hsmmc.c: Add missing prototype header Add missing header file to fix compilation warning omap_hsmmc.c: In function 'omap_mmc_init': omap_hsmmc.c:474: warning: implicit declaration of function 'get_cpu_family' omap_hsmmc.c:474: warning: implicit declaration of function 'get_cpu_rev' introduced by commit "MMC: omap_hsmmc.c: disable multiblock rw on old rev omap34xx silicon" (4ca9244d74f146a0605f5bee28a66e39aae88d3e) Signed-off-by: Dirk Behme CC: Andy Fleming CC: John Rigby --- diff --git a/drivers/mmc/omap_hsmmc.c b/drivers/mmc/omap_hsmmc.c index 957b987..ef12ecd 100644 --- a/drivers/mmc/omap_hsmmc.c +++ b/drivers/mmc/omap_hsmmc.c @@ -30,6 +30,7 @@ #include #include #include +#include /* If we fail after 1 second wait, something is really bad */ #define MAX_RETRY_MS 1000