summaryrefslogtreecommitdiff
path: root/drivers/rtc/ds1556.c
diff options
context:
space:
mode:
authorGerald Van Baren <vanbaren@cideas.com>2008-03-21 11:58:22 -0400
committerGerald Van Baren <vanbaren@cideas.com>2008-03-21 11:58:22 -0400
commit01026a6e613e1cfe580122fb5350677025f896fa (patch)
tree5e5905f085107242093e39a5e2175622df1bb73a /drivers/rtc/ds1556.c
parent11abe45c48ec3485a6c1a5168ce8d79c3288adc1 (diff)
parent81a0ac62ea29f8252d0a714709d0ecfdbba2a15e (diff)
downloadu-boot-imx-01026a6e613e1cfe580122fb5350677025f896fa.zip
u-boot-imx-01026a6e613e1cfe580122fb5350677025f896fa.tar.gz
u-boot-imx-01026a6e613e1cfe580122fb5350677025f896fa.tar.bz2
Merge git://www.denx.de/git/u-boot into uboot
Diffstat (limited to 'drivers/rtc/ds1556.c')
-rw-r--r--drivers/rtc/ds1556.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/rtc/ds1556.c b/drivers/rtc/ds1556.c
index 4365cfb..2c496f5 100644
--- a/drivers/rtc/ds1556.c
+++ b/drivers/rtc/ds1556.c
@@ -69,7 +69,7 @@ static unsigned bcd2bin(uchar c);
/* ------------------------------------------------------------------------- */
-void rtc_get( struct rtc_time *tmp )
+int rtc_get( struct rtc_time *tmp )
{
uchar sec, min, hour;
uchar mday, wday, mon, year;
@@ -118,6 +118,7 @@ void rtc_get( struct rtc_time *tmp )
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 )