From 2dd97488ee1aee3511706425853522a3fb2c8467 Mon Sep 17 00:00:00 2001 From: Dirk Behme Date: Sat, 9 Jul 2011 20:52:17 +0000 Subject: [PATCH] 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 --- board/st-ericsson/u8500/u8500_href.c | 1 + 1 file changed, 1 insertion(+) diff --git a/board/st-ericsson/u8500/u8500_href.c b/board/st-ericsson/u8500/u8500_href.c index 525633e865..9283fab685 100644 --- a/board/st-ericsson/u8500/u8500_href.c +++ b/board/st-ericsson/u8500/u8500_href.c @@ -27,6 +27,7 @@ #include #include #ifdef CONFIG_MMC +#include "prcmu-fw.h" #include "../../../drivers/mmc/arm_pl180_mmci.h" #endif -- 2.39.2