svn commit: r205984 - stable/8/sys/dev/fb

Jung-uk Kim jkim at FreeBSD.org
Wed Mar 31 15:49:10 UTC 2010


Author: jkim
Date: Wed Mar 31 15:49:10 2010
New Revision: 205984
URL: http://svn.freebsd.org/changeset/base/205984

Log:
  MFC:	r197185
  
  Enable BIOS modes on amd64.

Modified:
  stable/8/sys/dev/fb/vga.c
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)
  stable/8/sys/dev/xen/xenpci/   (props changed)

Modified: stable/8/sys/dev/fb/vga.c
==============================================================================
--- stable/8/sys/dev/fb/vga.c	Wed Mar 31 15:45:11 2010	(r205983)
+++ stable/8/sys/dev/fb/vga.c	Wed Mar 31 15:49:10 2010	(r205984)
@@ -177,7 +177,7 @@ vga_mmap(struct cdev *dev, vga_softc_t *
 #endif
 
 /* architecture dependent option */
-#ifndef __i386__
+#if !defined(__i386__) && !defined(__amd64__)
 #define VGA_NO_BIOS		1
 #endif
 


More information about the svn-src-all mailing list