mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 17:51:43 +00:00
cc22b4c185
Convert the incorrectly named PCIMEM_BASE to a variable called vga_base. This removes the dependency on mach/hardware.h. Signed-off-by: Rob Herring <rob.herring@calxeda.com> Acked-by: Nicolas Pitre <nicolas.pitre@linaro.org> Reviewed-by: Arnd Bergmann <arnd@arndb.de>
14 lines
266 B
C
14 lines
266 B
C
#ifndef ASMARM_VGA_H
|
|
#define ASMARM_VGA_H
|
|
|
|
#include <linux/io.h>
|
|
|
|
extern unsigned long vga_base;
|
|
|
|
#define VGA_MAP_MEM(x,s) (vga_base + (x))
|
|
|
|
#define vga_readb(x) (*((volatile unsigned char *)x))
|
|
#define vga_writeb(x,y) (*((volatile unsigned char *)y) = (x))
|
|
|
|
#endif
|