X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=include%2Frtc.h;h=772a54884197d47b55af5dddc0374d94d43dcc39;hb=26a33504a55e4882520f2e9da96ba6c22badb353;hp=df2d35fe497b8bf6157ee8d7f0d453b16cd2dd89;hpb=10a3367955bc2033b288915f8f10d0e507fe2fa1;p=oweals%2Fu-boot.git diff --git a/include/rtc.h b/include/rtc.h index df2d35fe49..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 @@ -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 *);