svn commit: r201588 - stable/8/sys/dev/ahci

Alexander Motin mav at FreeBSD.org
Tue Jan 5 14:03:47 UTC 2010


Author: mav
Date: Tue Jan  5 14:03:46 2010
New Revision: 201588
URL: http://svn.freebsd.org/changeset/base/201588

Log:
  MFC 200977:
  Avoid false positive probe on ICH6 chipsets.

Modified:
  stable/8/sys/dev/ahci/ahci.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/ahci/ahci.c
==============================================================================
--- stable/8/sys/dev/ahci/ahci.c	Tue Jan  5 14:02:12 2010	(r201587)
+++ stable/8/sys/dev/ahci/ahci.c	Tue Jan  5 14:03:46 2010	(r201588)
@@ -115,8 +115,8 @@ static struct {
 	{0x43931002, "ATI IXP700",	0},
 	{0x43941002, "ATI IXP800",	0},
 	{0x43951002, "ATI IXP800",	0},
-	{0x26528086, "Intel ICH6",	0},
-	{0x26538086, "Intel ICH6M",	0},
+	{0x26528086, "Intel ICH6",	AHCI_Q_NOFORCE},
+	{0x26538086, "Intel ICH6M",	AHCI_Q_NOFORCE},
 	{0x26818086, "Intel ESB2",	0},
 	{0x26828086, "Intel ESB2",	0},
 	{0x26838086, "Intel ESB2",	0},


More information about the svn-src-all mailing list