diff options
author | Dirk Behme <dirk.behme@googlemail.com> | 2011-07-09 20:52:17 +0000 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2011-08-04 12:57:20 +0200 |
commit | 2dd97488ee1aee3511706425853522a3fb2c8467 (patch) | |
tree | 99f605430c7a54112ba08a12c2b527f596929a67 /board/st-ericsson/u8500 | |
parent | 75f980bdb3805d470b407a220a5fb6e02725deed (diff) | |
download | u-boot-imx-2dd97488ee1aee3511706425853522a3fb2c8467.zip u-boot-imx-2dd97488ee1aee3511706425853522a3fb2c8467.tar.gz u-boot-imx-2dd97488ee1aee3511706425853522a3fb2c8467.tar.bz2 |
ARMv7: u8500_href: Add missing header to fix compiler warning
Fix the compiler warning
u8500_href.c: In function 'hrefplus_mmc_power_init':
u8500_href.c:258: warning: implicit declaration of function 'prcmu_i2c_read'
u8500_href.c:265: warning: implicit declaration of function 'prcmu_i2c_write'
by adding the missing header file.
Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
Diffstat (limited to 'board/st-ericsson/u8500')
-rw-r--r-- | board/st-ericsson/u8500/u8500_href.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/board/st-ericsson/u8500/u8500_href.c b/board/st-ericsson/u8500/u8500_href.c index 525633e..9283fab 100644 --- a/board/st-ericsson/u8500/u8500_href.c +++ b/board/st-ericsson/u8500/u8500_href.c @@ -27,6 +27,7 @@ #include <asm/arch/hardware.h> #include <asm/arch/sys_proto.h> #ifdef CONFIG_MMC +#include "prcmu-fw.h" #include "../../../drivers/mmc/arm_pl180_mmci.h" #endif |