svn commit: r237484 - head/sys/dev/agp

Konstantin Belousov kib at FreeBSD.org
Sat Jun 23 15:36:32 UTC 2012


Author: kib
Date: Sat Jun 23 15:36:32 2012
New Revision: 237484
URL: http://svn.freebsd.org/changeset/base/237484

Log:
  Correct device id for GPU on some server SandyBridge model.
  
  Submitted and tested by:	Thomas Zander <thomas.e.zander googlemail com>
  MFC after:	3 days

Modified:
  head/sys/dev/agp/agp_i810.c

Modified: head/sys/dev/agp/agp_i810.c
==============================================================================
--- head/sys/dev/agp/agp_i810.c	Sat Jun 23 14:43:25 2012	(r237483)
+++ head/sys/dev/agp/agp_i810.c	Sat Jun 23 15:36:32 2012	(r237484)
@@ -700,7 +700,7 @@ static const struct agp_i810_match {
 		.driver = &agp_i810_sb_driver
 	},
 	{
-		.devid = 0x01088086,
+		.devid = 0x010a8086,
 		.name = "SandyBridge server IG",
 		.driver = &agp_i810_sb_driver
 	},


More information about the svn-src-all mailing list