Committer: Michael Beasley <mike@snafu.setup>
[mikesnafu-overlay.git] / include / asm-sparc64 / vga.h
blobc69d5b2ba19a488ea3abf8a75c25383edd13d562
1 /*
2 * Access to VGA videoram
4 * (c) 1998 Martin Mares <mj@ucw.cz>
5 */
7 #ifndef _LINUX_ASM_VGA_H_
8 #define _LINUX_ASM_VGA_H_
10 #include <asm/types.h>
12 #define VT_BUF_HAVE_RW
14 #undef scr_writew
15 #undef scr_readw
17 static inline void scr_writew(u16 val, u16 *addr)
19 BUG_ON((long) addr >= 0);
21 *addr = val;
24 static inline u16 scr_readw(const u16 *addr)
26 BUG_ON((long) addr >= 0);
28 return *addr;
31 #define VGA_MAP_MEM(x,s) (x)
33 #endif