diff options
| author | Peter Wemm <peter@FreeBSD.org> | 2004-09-24 01:08:34 +0000 |
|---|---|---|
| committer | Peter Wemm <peter@FreeBSD.org> | 2004-09-24 01:08:34 +0000 |
| commit | 2169193596db9cc30586af31a507cc6e09cd440e (patch) | |
| tree | 0d32e80a39f47cf18ed420b2e7f40883dd23012c /sys/dev/fb | |
| parent | c3277f936c2472a67b1fa6210b8f09ddcc674744 (diff) | |
Notes
Diffstat (limited to 'sys/dev/fb')
| -rw-r--r-- | sys/dev/fb/vga.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/dev/fb/vga.c b/sys/dev/fb/vga.c index 3af5fda458dc..53b67b87bd72 100644 --- a/sys/dev/fb/vga.c +++ b/sys/dev/fb/vga.c @@ -48,7 +48,7 @@ __FBSDID("$FreeBSD$"); #include <vm/pmap.h> #include <machine/md_var.h> -#ifdef __i386__ +#if defined(__i386__) || defined(__amd64__) #include <machine/pc/bios.h> #endif #include <machine/bus.h> @@ -64,11 +64,7 @@ __FBSDID("$FreeBSD$"); /* XXX machine/pc/bios.h has got too much i386-specific stuff in it */ #ifndef BIOS_PADDRTOVADDR -#if !defined(__amd64__) #define BIOS_PADDRTOVADDR(x) (x) -#else -#define BIOS_PADDRTOVADDR(x) ((x) + KERNBASE) -#endif #endif int |
