aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/fb
diff options
context:
space:
mode:
authorXin LI <delphij@FreeBSD.org>2009-09-14 05:38:03 +0000
committerXin LI <delphij@FreeBSD.org>2009-09-14 05:38:03 +0000
commitb53c4efaa1b760d27c4db4c4dfd149c349fb2f31 (patch)
treec593decadcedf1059e6f0950bc3c3b1e8abd517a /sys/dev/fb
parentb209cefeaddfad6ad759e8e4cebfb794e7dbf6b2 (diff)
downloadsrc-b53c4efaa1b760d27c4db4c4dfd149c349fb2f31.tar.gz
src-b53c4efaa1b760d27c4db4c4dfd149c349fb2f31.zip
Enable BIOS modes on amd64.
Submitted by: paradox <ddkprog at yahoo com>
Notes
Notes: svn path=/head/; revision=197185
Diffstat (limited to 'sys/dev/fb')
-rw-r--r--sys/dev/fb/vga.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/fb/vga.c b/sys/dev/fb/vga.c
index a2e99f2b24e6..0cae0ae50598 100644
--- a/sys/dev/fb/vga.c
+++ b/sys/dev/fb/vga.c
@@ -177,7 +177,7 @@ vga_mmap(struct cdev *dev, vga_softc_t *sc, vm_offset_t offset, vm_offset_t *pad
#endif
/* architecture dependent option */
-#ifndef __i386__
+#if !defined(__i386__) && !defined(__amd64__)
#define VGA_NO_BIOS 1
#endif