diff options
| author | Greg Ungerer <gerg@uclinux.org> | 2009-01-29 00:38:57 -0500 |
|---|---|---|
| committer | Greg Ungerer <gerg@uclinux.org> | 2009-03-24 01:17:41 -0400 |
| commit | bf08d5251840ee7fe7ac561fc65aeead4f31335b (patch) | |
| tree | 4aa4bac0d2a30f2de9b3b4f11ca2237cbfa01367 | |
| parent | 9a4048a211513c3d6c56ddf2efb276113eae0b80 (diff) | |
m68k: use the mc146818rtc.h for non-mmu setups as well.
The mmu varient of mc146818rtc.h can be use on the non-mmu builds as well.
Revert to the single mc146818rtc.h file.
Signed-off-by: Greg Ungerer <gerg@uclinux.org>
Acked-by: Geert Uytterhoeven <geert@linux-m68k.org>
| -rw-r--r-- | arch/m68k/include/asm/mc146818rtc.h | 31 | ||||
| -rw-r--r-- | arch/m68k/include/asm/mc146818rtc_mm.h | 26 | ||||
| -rw-r--r-- | arch/m68k/include/asm/mc146818rtc_no.h | 9 |
3 files changed, 26 insertions, 40 deletions
diff --git a/arch/m68k/include/asm/mc146818rtc.h b/arch/m68k/include/asm/mc146818rtc.h index fb90dcf78426..9f70a01f73dc 100644 --- a/arch/m68k/include/asm/mc146818rtc.h +++ b/arch/m68k/include/asm/mc146818rtc.h | |||
| @@ -1,5 +1,26 @@ | |||
| 1 | #ifdef __uClinux__ | 1 | /* |
| 2 | #include "mc146818rtc_no.h" | 2 | * Machine dependent access functions for RTC registers. |
| 3 | #else | 3 | */ |
| 4 | #include "mc146818rtc_mm.h" | 4 | #ifndef _ASM_MC146818RTC_H |
| 5 | #endif | 5 | #define _ASM_MC146818RTC_H |
| 6 | |||
| 7 | |||
| 8 | #ifdef CONFIG_ATARI | ||
| 9 | /* RTC in Atari machines */ | ||
| 10 | |||
| 11 | #include <asm/atarihw.h> | ||
| 12 | |||
| 13 | #define RTC_PORT(x) (TT_RTC_BAS + 2*(x)) | ||
| 14 | #define RTC_ALWAYS_BCD 0 | ||
| 15 | |||
| 16 | #define CMOS_READ(addr) ({ \ | ||
| 17 | atari_outb_p((addr),RTC_PORT(0)); \ | ||
| 18 | atari_inb_p(RTC_PORT(1)); \ | ||
| 19 | }) | ||
| 20 | #define CMOS_WRITE(val, addr) ({ \ | ||
| 21 | atari_outb_p((addr),RTC_PORT(0)); \ | ||
| 22 | atari_outb_p((val),RTC_PORT(1)); \ | ||
| 23 | }) | ||
| 24 | #endif /* CONFIG_ATARI */ | ||
| 25 | |||
| 26 | #endif /* _ASM_MC146818RTC_H */ | ||
diff --git a/arch/m68k/include/asm/mc146818rtc_mm.h b/arch/m68k/include/asm/mc146818rtc_mm.h deleted file mode 100644 index 9f70a01f73dc..000000000000 --- a/arch/m68k/include/asm/mc146818rtc_mm.h +++ /dev/null | |||
| @@ -1,26 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * Machine dependent access functions for RTC registers. | ||
| 3 | */ | ||
| 4 | #ifndef _ASM_MC146818RTC_H | ||
| 5 | #define _ASM_MC146818RTC_H | ||
| 6 | |||
| 7 | |||
| 8 | #ifdef CONFIG_ATARI | ||
| 9 | /* RTC in Atari machines */ | ||
| 10 | |||
| 11 | #include <asm/atarihw.h> | ||
| 12 | |||
| 13 | #define RTC_PORT(x) (TT_RTC_BAS + 2*(x)) | ||
| 14 | #define RTC_ALWAYS_BCD 0 | ||
| 15 | |||
| 16 | #define CMOS_READ(addr) ({ \ | ||
| 17 | atari_outb_p((addr),RTC_PORT(0)); \ | ||
| 18 | atari_inb_p(RTC_PORT(1)); \ | ||
| 19 | }) | ||
| 20 | #define CMOS_WRITE(val, addr) ({ \ | ||
| 21 | atari_outb_p((addr),RTC_PORT(0)); \ | ||
| 22 | atari_outb_p((val),RTC_PORT(1)); \ | ||
| 23 | }) | ||
| 24 | #endif /* CONFIG_ATARI */ | ||
| 25 | |||
| 26 | #endif /* _ASM_MC146818RTC_H */ | ||
diff --git a/arch/m68k/include/asm/mc146818rtc_no.h b/arch/m68k/include/asm/mc146818rtc_no.h deleted file mode 100644 index 907a0481a140..000000000000 --- a/arch/m68k/include/asm/mc146818rtc_no.h +++ /dev/null | |||
| @@ -1,9 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * Machine dependent access functions for RTC registers. | ||
| 3 | */ | ||
| 4 | #ifndef _M68KNOMMU_MC146818RTC_H | ||
| 5 | #define _M68KNOMMU_MC146818RTC_H | ||
| 6 | |||
| 7 | /* empty include file to satisfy the include in genrtc.c/ide-geometry.c */ | ||
| 8 | |||
| 9 | #endif /* _M68KNOMMU_MC146818RTC_H */ | ||
