[U-Boot] [PATCH] rtc: Fix drivers/rtc/Makefile for DS1307/DS1338 chips

Boards with DS1307/DS1338 rtc like DU440 and kilauea fail to build without this fix.
Signed-off-by: Matthias Fuchs matthias.fuchs@esd-electronics.com --- drivers/rtc/Makefile | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/drivers/rtc/Makefile b/drivers/rtc/Makefile index 2af3ee5..af101fa 100644 --- a/drivers/rtc/Makefile +++ b/drivers/rtc/Makefile @@ -32,7 +32,8 @@ COBJS-y += date.o COBJS-$(CONFIG_RTC_DS12887) += ds12887.o COBJS-$(CONFIG_RTC_DS1302) += ds1302.o COBJS-$(CONFIG_RTC_DS1306) += ds1306.o -COBJS-$(CONFIG_RTC_DS1307 || CONFIG_RTC_DS1338) += ds1307.o +COBJS-$(CONFIG_RTC_DS1307) += ds1307.o +COBJS-$(CONFIG_RTC_DS1338) += ds1307.o COBJS-$(CONFIG_RTC_DS1337) += ds1337.o COBJS-$(CONFIG_RTC_DS1374) += ds1374.o COBJS-$(CONFIG_RTC_DS1556) += ds1556.o

Hi Matthias,
On Wednesday 20 August 2008, Matthias Fuchs wrote:
Boards with DS1307/DS1338 rtc like DU440 and kilauea fail to build without this fix.
I was quicker by 2 hours. :)
Best regards, Stefan
===================================================================== DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: +49-8142-66989-0 Fax: +49-8142-66989-80 Email: office@denx.de =====================================================================
participants (2)
-
Matthias Fuchs
-
Stefan Roese