From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marek Vasut Date: Sun, 30 Oct 2011 00:36:51 +0200 Subject: [U-Boot] [PATCH] ARM: dreamplug: fix compilation In-Reply-To: <1319923187-19917-1-git-send-email-agust@denx.de> References: <1319923187-19917-1-git-send-email-agust@denx.de> Message-ID: <201110300036.51812.marek.vasut@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 > Fix build issues: > > mvrtc.c: In function 'rtc_get': > mvrtc.c:45: warning: implicit declaration of function 'readl' > mvrtc.c: In function 'rtc_set': > mvrtc.c:100: warning: implicit declaration of function 'writel' > dreamplug.c: In function 'board_early_init_f': > dreamplug.c:43: warning: implicit declaration of function 'kw_config_gpio' > dreamplug.c: In function 'board_init': > dreamplug.c:108: warning: implicit declaration of function 'kw_sdram_bar' > drivers/rtc/librtc.o: In function `rtc_set': > /home/ag/u-boot/u-boot-move-new-host/u-boot-video/drivers/rtc/mvrtc.c:92: > undefined reference to `writel' > /home/ag/u-boot/u-boot-move-new-host/u-boot-video/drivers/rtc/mvrtc.c:103: > undefined reference to `writel' drivers/rtc/librtc.o: In function > `rtc_reset': > /home/ag/u-boot/u-boot-move-new-host/u-boot-video/drivers/rtc/mvrtc.c:117: > undefined reference to `readl' > /home/ag/u-boot/u-boot-move-new-host/u-boot-video/drivers/rtc/mvrtc.c:120: > undefined reference to `readl' drivers/rtc/librtc.o: In function > `rtc_get': > /home/ag/u-boot/u-boot-move-new-host/u-boot-video/drivers/rtc/mvrtc.c:45: > undefined reference to `readl' > /home/ag/u-boot/u-boot-move-new-host/u-boot-video/drivers/rtc/mvrtc.c:48: > undefined reference to `readl' ... > > Signed-off-by: Anatolij Gustschin > Cc: Jason Cooper > Cc: Albert ARIBAUD > --- > board/Marvell/dreamplug/dreamplug.c | 1 + > drivers/rtc/mvrtc.c | 1 + > 2 files changed, 2 insertions(+), 0 deletions(-) > > diff --git a/board/Marvell/dreamplug/dreamplug.c > b/board/Marvell/dreamplug/dreamplug.c index 13b4013..31b73c9 100644 > --- a/board/Marvell/dreamplug/dreamplug.c > +++ b/board/Marvell/dreamplug/dreamplug.c > @@ -27,6 +27,7 @@ > > #include > #include > +#include > #include > #include > #include "dreamplug.h" > diff --git a/drivers/rtc/mvrtc.c b/drivers/rtc/mvrtc.c > index ccc573a..edc1f4f 100644 > --- a/drivers/rtc/mvrtc.c > +++ b/drivers/rtc/mvrtc.c > @@ -28,6 +28,7 @@ > #include > #include > #include > +#include > #include "mvrtc.h" > > /* This RTC does not support century, so we assume 20 */ How the heck did you get this? I MAKEALL-ed all ARM boards and didn't get this crap. Either way: Acked-by: Marek Vasut