diff options
author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2008-04-02 08:03:58 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-04-17 14:11:18 -0700 |
commit | 53eec6f1d25932e76d63ccb14082792b0b96bf41 (patch) | |
tree | cf05628498e804dfdf89292e71fa68ab3b059e1f | |
parent | a253b38bf50c85227c33ca0febc870ee49d1588e (diff) | |
download | u-boot-imx-53eec6f1d25932e76d63ccb14082792b0b96bf41.zip u-boot-imx-53eec6f1d25932e76d63ccb14082792b0b96bf41.tar.gz u-boot-imx-53eec6f1d25932e76d63ccb14082792b0b96bf41.tar.bz2 |
ds174x: Fix warning on return in rtc_get and rtc_set functions
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
-rw-r--r-- | drivers/rtc/ds174x.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/rtc/ds174x.c b/drivers/rtc/ds174x.c index 81a9cb3..eb3ca88 100644 --- a/drivers/rtc/ds174x.c +++ b/drivers/rtc/ds174x.c @@ -114,6 +114,7 @@ int 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 ) @@ -142,8 +143,6 @@ void rtc_set( struct rtc_time *tmp ) /* unlock clock registers after read */ rtc_write( RTC_CONTROLA, ( reg_a & ~RTC_CA_WRITE )); - - return 0; } void rtc_reset (void) |