summaryrefslogtreecommitdiff
path: root/drivers/rtc/ds12887.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/rtc/ds12887.c')
-rw-r--r--drivers/rtc/ds12887.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/rtc/ds12887.c b/drivers/rtc/ds12887.c
index 84fecf019..57a446d30 100644
--- a/drivers/rtc/ds12887.c
+++ b/drivers/rtc/ds12887.c
@@ -88,7 +88,7 @@ static unsigned char bin2bcd (unsigned int n)
/* ------------------------------------------------------------------------- */
-void rtc_get (struct rtc_time *tmp)
+int rtc_get (struct rtc_time *tmp)
{
uchar sec, min, hour, mday, wday, mon, year;
@@ -150,6 +150,8 @@ else
tmp->tm_year, tmp->tm_mon, tmp->tm_mday, tmp->tm_wday,
tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
#endif
+
+ return 0;
}
void rtc_set (struct rtc_time *tmp)