To: linus, akpm Cc: lkml Subject: [PATCH] M68k I/O for generic 8250 on HP300 M68k I/O updates from Kars de Jong and Jochen Friedrich: - To be able to use the generic 8250 driver on the HP300, added dummy implementations of inb(), inb_p(), outb() and outb_p() - Added implementations of readb(), writeb(), readl(), and writel() for the 8250 driver Signed-off-by: Kars de Jong Signed-Off-By: Jochen Friedrich Signed-off-by: Geert Uytterhoeven --- io.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) --- linux-2.6.10-rc1/include/asm-m68k/io.h 2004-06-20 13:13:50.000000000 +0200 +++ linux-m68k-2.6.10-rc1/include/asm-m68k/io.h 2004-07-14 13:19:47.000000000 +0200 @@ -306,6 +306,23 @@ #endif #endif /* CONFIG_PCI */ +#if !defined(CONFIG_ISA) && !defined(CONFIG_PCI) && defined(CONFIG_HP300) +/* + * We need to define dummy functions otherwise drivers/serial/8250.c doesn't link + */ +#define inb(port) 0xff +#define inb_p(port) 0xff +#define outb(val,port) do { } while (0) +#define outb_p(val,port) do { } while (0) + +/* + * These should be valid on any ioremap()ed region + */ +#define readb(addr) in_8(addr) +#define writeb(val,addr) out_8((addr),(val)) +#define readl(addr) in_le32(addr) +#define writel(val,addr) out_le32((addr),(val)) +#endif static inline void *ioremap(unsigned long physaddr, unsigned long size) {