projects
/
kernel
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a253b38
)
ds174x: Fix warning on return in rtc_get and rtc_set functions
author
Jean-Christophe PLAGNIOL-VILLARD
<plagnioj@jcrosoft.com>
Wed, 2 Apr 2008 06:03:58 +0000
(08:03 +0200)
committer
Wolfgang Denk
<wd@denx.de>
Thu, 17 Apr 2008 21:11:18 +0000
(14:11 -0700)
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
drivers/rtc/ds174x.c
patch
|
blob
|
history
diff --git
a/drivers/rtc/ds174x.c
b/drivers/rtc/ds174x.c
index
81a9cb3
..
eb3ca88
100644
(file)
--- 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)