From mboxrd@z Thu Jan 1 00:00:00 1970 From: Dirk Behme Date: Sun, 15 May 2011 21:04:47 +0200 Subject: [U-Boot] [PATCH] MMC: omap_hsmmc.c: Add missing prototype header Message-ID: <1305486287-3446-1-git-send-email-dirk.behme@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de From: Dirk Behme 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 --- drivers/mmc/omap_hsmmc.c | 1 + 1 file changed, 1 insertion(+) Index: u-boot.git/drivers/mmc/omap_hsmmc.c =================================================================== --- u-boot.git.orig/drivers/mmc/omap_hsmmc.c +++ u-boot.git/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