[U-Boot-Users] unassigned-patches/12: [PATCH 2/2] ds174x: Fix warning on return in rtc_get and rtc_set function

u-boot at bugs.denx.de u-boot at bugs.denx.de
Tue Apr 8 16:40:01 CEST 2008


ds174x.c: In function 'rtc_get':
ds174x.c:117: warning: no return statement in function returning non-void
ds174x.c: In function 'rtc_set':
ds174x.c:146: warning: 'return' with a value, in function returning void

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj at jcrosoft.com>

---
Added to GNATS database as unassigned-patches/12
>Responsible:    patch-coord
>Message-Id:     <1207116238-7253-3-git-send-email-plagnioj at jcrosoft.com>
>In-Reply-To:    <1207116238-7253-2-git-send-email-plagnioj at jcrosoft.com>
>References:     <1207116238-7253-1-git-send-email-plagnioj at jcrosoft.com>	<1207116238-7253-2-git-send-email-plagnioj at jcrosoft.com>
>Patch-Date:     Wed Apr 02 08:03:58 +0200 2008
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)
-- 
1.5.4.5


-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
_______________________________________________
U-Boot-Users mailing list
U-Boot-Users at lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/u-boot-users







More information about the U-Boot mailing list