patch-1.3.28 linux/include/linux/mc146818rtc.h
Next file: linux/include/linux/module.h
Previous file: linux/include/linux/kernel_stat.h
Back to the patch index
Back to the overall index
- Lines: 21
- Date:
Fri Sep 15 10:59:45 1995
- Orig file:
v1.3.27/linux/include/linux/mc146818rtc.h
- Orig date:
Fri Feb 3 18:55:02 1995
diff -u --recursive --new-file v1.3.27/linux/include/linux/mc146818rtc.h linux/include/linux/mc146818rtc.h
@@ -14,17 +14,16 @@
#ifndef RTC_PORT
#define RTC_PORT(x) (0x70 + (x))
-#define RTC_ADDR(x) (0x80 | (x))
#define RTC_ALWAYS_BCD 1
#endif
#define CMOS_READ(addr) ({ \
-outb_p(RTC_ADDR(addr),RTC_PORT(0)); \
+outb_p((addr),RTC_PORT(0)); \
inb_p(RTC_PORT(1)); \
})
#define CMOS_WRITE(val, addr) ({ \
-outb_p(RTC_ADDR(addr),RTC_PORT(0)); \
-outb_p(val,RTC_PORT(1)); \
+outb_p((addr),RTC_PORT(0)); \
+outb_p((val),RTC_PORT(1)); \
})
/**********************************************************************
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov
with Sam's (original) version of this