diff options
author | Gerald Van Baren <vanbaren@cideas.com> | 2008-03-21 11:42:54 -0400 |
---|---|---|
committer | Gerald Van Baren <vanbaren@cideas.com> | 2008-03-21 11:42:54 -0400 |
commit | 493a2b1dc97367e904bf83869501f6290f3b374e (patch) | |
tree | 5e5905f085107242093e39a5e2175622df1bb73a /drivers/rtc/ds12887.c | |
parent | 11abe45c48ec3485a6c1a5168ce8d79c3288adc1 (diff) | |
parent | 81a0ac62ea29f8252d0a714709d0ecfdbba2a15e (diff) | |
download | u-boot-imx-493a2b1dc97367e904bf83869501f6290f3b374e.zip u-boot-imx-493a2b1dc97367e904bf83869501f6290f3b374e.tar.gz u-boot-imx-493a2b1dc97367e904bf83869501f6290f3b374e.tar.bz2 |
Merge git://www.denx.de/git/u-boot into uboot
Diffstat (limited to 'drivers/rtc/ds12887.c')
-rw-r--r-- | drivers/rtc/ds12887.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/rtc/ds12887.c b/drivers/rtc/ds12887.c index 84fecf0..57a446d 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) |