mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-01 09:16:38 +07:00
be50972935
Remove includes of asm/hardware.h in addition to asm/arch/hardware.h. Then, since asm/hardware.h only exists to include asm/arch/hardware.h, update everything to directly include asm/arch/hardware.h and remove asm/hardware.h. Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
13 lines
266 B
C
13 lines
266 B
C
#ifndef ASMARM_VGA_H
|
|
#define ASMARM_VGA_H
|
|
|
|
#include <asm/arch/hardware.h>
|
|
#include <asm/io.h>
|
|
|
|
#define VGA_MAP_MEM(x,s) (PCIMEM_BASE + (x))
|
|
|
|
#define vga_readb(x) (*((volatile unsigned char *)x))
|
|
#define vga_writeb(x,y) (*((volatile unsigned char *)y) = (x))
|
|
|
|
#endif
|