Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 27d632d2 authored by Geert Uytterhoeven's avatar Geert Uytterhoeven
Browse files

m68k/atari: Hide RTC_PORT() macro from rtc-cmos



Rename RTC_PORT() to ATARI_RTC_PORT(), as the rtc-cmos RTC driver uses the
presence of this macro to enable support for the second NVRAM bank, which
Atari doesn't have ("Unable to handle kernel access at virtual address
00ff8965").

Signed-off-by: default avatarGeert Uytterhoeven <geert@linux-m68k.org>
parent 8a09cec2
Loading
Loading
Loading
Loading
+5 −5
Original line number Original line Diff line number Diff line
@@ -10,16 +10,16 @@


#include <asm/atarihw.h>
#include <asm/atarihw.h>


#define RTC_PORT(x)	(TT_RTC_BAS + 2*(x))
#define ATARI_RTC_PORT(x)	(TT_RTC_BAS + 2*(x))
#define RTC_ALWAYS_BCD	0
#define RTC_ALWAYS_BCD	0


#define CMOS_READ(addr) ({ \
#define CMOS_READ(addr) ({ \
atari_outb_p((addr),RTC_PORT(0)); \
atari_outb_p((addr), ATARI_RTC_PORT(0)); \
atari_inb_p(RTC_PORT(1)); \
atari_inb_p(ATARI_RTC_PORT(1)); \
})
})
#define CMOS_WRITE(val, addr) ({ \
#define CMOS_WRITE(val, addr) ({ \
atari_outb_p((addr),RTC_PORT(0)); \
atari_outb_p((addr), ATARI_RTC_PORT(0)); \
atari_outb_p((val),RTC_PORT(1)); \
atari_outb_p((val), ATARI_RTC_PORT(1)); \
})
})
#endif /* CONFIG_ATARI */
#endif /* CONFIG_ATARI */