X-Git-Url: https://git.kernelconcepts.de/?a=blobdiff_plain;f=include%2Frtc.h;h=772a54884197d47b55af5dddc0374d94d43dcc39;hb=69bcf5bc80a47acbd62b8cfff932cb12d47997d7;hp=15f3571d7678d9741e5244a37036b02446ff20a1;hpb=a6840a6ede9db4372b4b84b2485cefd0979b44a4;p=karo-tx-uboot.git diff --git a/include/rtc.h b/include/rtc.h index 15f3571d76..772a548841 100644 --- a/include/rtc.h +++ b/include/rtc.h @@ -27,6 +27,11 @@ #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 + /* * The struct used to pass data from the generic interface code to * the hardware dependend low-level code ande vice versa. Identical @@ -35,7 +40,7 @@ * Note that there are small but significant differences to the * common "struct time": * - * struct time: struct rtc_time: + * struct time: struct rtc_time: * tm_mon 0 ... 11 1 ... 12 * tm_year years since 1900 years since 0 */ @@ -52,8 +57,8 @@ struct rtc_time { int tm_isdst; }; -void rtc_get (struct rtc_time *); -void rtc_set (struct rtc_time *); +int rtc_get (struct rtc_time *); +int rtc_set (struct rtc_time *); void rtc_reset (void); void GregorianDay (struct rtc_time *);