]> git.ipfire.org Git - thirdparty/linux.git/blame - arch/arm/include/asm/vga.h
[ARM] Convert asm/io.h to linux/io.h
[thirdparty/linux.git] / arch / arm / include / asm / vga.h
CommitLineData
1da177e4
LT
1#ifndef ASMARM_VGA_H
2#define ASMARM_VGA_H
3
fced80c7 4#include <linux/io.h>
a09e64fb 5#include <mach/hardware.h>
1da177e4 6
4f1bcaf0 7#define VGA_MAP_MEM(x,s) (PCIMEM_BASE + (x))
1da177e4
LT
8
9#define vga_readb(x) (*((volatile unsigned char *)x))
10#define vga_writeb(x,y) (*((volatile unsigned char *)y) = (x))
11
12#endif