]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - include/rtc.h
qoriq/p1_p2_rdb: Add Dual Role USB support macro for P1020RDB
[karo-tx-uboot.git] / include / rtc.h
index df2d35fe497b8bf6157ee8d7f0d453b16cd2dd89..772a54884197d47b55af5dddc0374d94d43dcc39 100644 (file)
 #ifndef _RTC_H_
 #define _RTC_H_
 
+/* bcd<->bin functions are needed by almost all the RTC drivers, let's include
+ * it there instead of in evey single driver */
+
+#include <bcd.h>
+
 /*
  * The struct used to pass data from the generic interface code to
  * the hardware dependend low-level code ande vice versa. Identical
@@ -53,7 +58,7 @@ struct rtc_time {
 };
 
 int rtc_get (struct rtc_time *);
-void rtc_set (struct rtc_time *);
+int rtc_set (struct rtc_time *);
 void rtc_reset (void);
 
 void GregorianDay (struct rtc_time *);