diff options
author | marcel <marcel@FreeBSD.org> | 2003-05-02 01:36:27 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 2003-05-02 01:36:27 +0000 |
commit | 11cbb9d2d693c91ddf072ecefa1ba44f83790146 (patch) | |
tree | 8efef2973628ec9c9257a37b382b8c45ac1aed95 /sys/dev/fb/vga.c | |
parent | ac4c68517583eb3c920aaf8482288eb3daf4332b (diff) | |
download | FreeBSD-src-11cbb9d2d693c91ddf072ecefa1ba44f83790146.zip FreeBSD-src-11cbb9d2d693c91ddf072ecefa1ba44f83790146.tar.gz |
Unbreak alpha and ia64 builds. The previous change made the inclusion
of <machine/pc/bios.h> specific to i386 and added a conditional define
for BIOS_PADDRTOVADDR that depends on ISA_HOLE_START. The latter is
undefined on alpha and ia64. Since the former is defined the same on
both alpha and ia64, assume the ISA_HOLE_START dependent definition
is specific to amd64 and use the identity-mapping in all other cases.
This of course is getting uglier every day...
Diffstat (limited to 'sys/dev/fb/vga.c')
-rw-r--r-- | sys/dev/fb/vga.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/dev/fb/vga.c b/sys/dev/fb/vga.c index b42016d..7c0627f 100644 --- a/sys/dev/fb/vga.c +++ b/sys/dev/fb/vga.c @@ -60,10 +60,15 @@ #define VGA_DEBUG 0 #endif -/* machine/pc/bios.h has got too much i386-specific stuff in it */ +/* 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) - ISA_HOLE_START) + atdevbase) #endif +#endif + int vga_probe_unit(int unit, video_adapter_t *buf, int flags) { |