1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _ASM_M68K_VGA_H
3 #define _ASM_M68K_VGA_H
5 #include <asm/raw_io.h>
9 * Ugh, we don't have PCI space, so map readb() and friends to use raw I/O
10 * accessors, which are identical to the z_*() Zorro bus accessors.
11 * This should make cirrusfb work again on Amiga
22 #define outb_p(port, val) do { } while (0)
23 #define outw(port, val) do { } while (0)
25 #define writeb raw_outb
26 #define writew raw_outw
28 #endif /* _ASM_M68K_VGA_H */