Signed-off-by: Michal Simek <monstr@monstr.eu>
COBJS-$(CONFIG_RTC_S3C24X0) += s3c24x0_rtc.o
COBJS-$(CONFIG_RTC_S3C44B0) += s3c44b0_rtc.o
COBJS-$(CONFIG_RTC_X1205) += x1205.o
-COBJS-$(CONFIG_RTC_XPSSRTC) += xpsrtc.o
COBJS := $(sort $(COBJS-y))
SRCS := $(COBJS:.o=.c)
+++ /dev/null
-/*
- * Another absolute-dummy "driver".
- */
-
-#include <rtc.h>
-
-void rtc_reset(void)
-{
- return;
-}
-
-int rtc_get(struct rtc_time *t)
-{
- t->tm_sec = 0;
- t->tm_min = 0;
- t->tm_hour = 0;
- t->tm_mday = 0;
- t->tm_mon = 0;
- t->tm_year = 0;
- t->tm_wday = 0;
- t->tm_yday = 0;
- t->tm_isdst = 0;
-
- return 0;
-}
-
-int rtc_set(struct rtc_time *t)
-{
- return 0;
-}