X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=include%2Frtc.h;h=772a54884197d47b55af5dddc0374d94d43dcc39;hb=a0d21fc01ac51d5f86cd5bd195dd524940f49223;hp=019c2ebb5181b4c67ac9276a89a596738527ff51;hpb=04e11cf383ff6231535fd981023bb1306b2133d4;p=oweals%2Fu-boot.git diff --git a/include/rtc.h b/include/rtc.h index 019c2ebb51..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 @@ -61,8 +66,4 @@ void to_tm (int, struct rtc_time *); unsigned long mktime (unsigned int, unsigned int, unsigned int, unsigned int, unsigned int, unsigned int); -uchar rtc_read(uchar reg) __attribute__((weak)); -void rtc_write(uchar reg, uchar val) __attribute__((weak)); - - #endif /* _RTC_H_ */