 cc22b4c185
			
		
	
	
	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>
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			266 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			13 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
 |