Go to the documentation of this file.
4 #ifndef _ASM_MC146818RTC_H
5 #define _ASM_MC146818RTC_H
10 #define RTC_PORT(x) ((x))
11 #define RTC_ALWAYS_BCD 1
18 #define CMOS_READ(addr) ({ \
19 outb_p((addr),RTC_PORT(0)); \
22 #define CMOS_WRITE(val, addr) ({ \
23 outb_p((addr),RTC_PORT(0)); \
24 outb_p((val),RTC_PORT(1)); \