diff options
author | Dirk Behme <dirk.behme@googlemail.com> | 2011-05-15 09:04:47 +0000 |
---|---|---|
committer | Andy Fleming <afleming@freescale.com> | 2011-05-18 14:38:05 -0500 |
commit | 96e0e7b36c5c335e7a551537f3a19dec0cd53356 (patch) | |
tree | b1df6c265823bd1a9504def4a2e3e3c76a1c824d /drivers/mmc/omap_hsmmc.c | |
parent | 1ed60d7ade5dc2c93c5b11c2a899369f2da9b1f8 (diff) | |
download | talos-obmc-uboot-96e0e7b36c5c335e7a551537f3a19dec0cd53356.tar.gz talos-obmc-uboot-96e0e7b36c5c335e7a551537f3a19dec0cd53356.zip |
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 <dirk.behme@googlemail.com>
CC: Andy Fleming <afleming@freescale.com>
CC: John Rigby <john.rigby@linaro.org>
Diffstat (limited to 'drivers/mmc/omap_hsmmc.c')
-rw-r--r-- | drivers/mmc/omap_hsmmc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mmc/omap_hsmmc.c b/drivers/mmc/omap_hsmmc.c index 957b9877a0..ef12ecd5e3 100644 --- a/drivers/mmc/omap_hsmmc.c +++ b/drivers/mmc/omap_hsmmc.c @@ -30,6 +30,7 @@ #include <twl4030.h> #include <asm/io.h> #include <asm/arch/mmc_host_def.h> +#include <asm/arch/sys_proto.h> /* If we fail after 1 second wait, something is really bad */ #define MAX_RETRY_MS 1000 |