svn commit: r306141 - stable/10/sys/pci

Andriy Gapon avg at FreeBSD.org
Wed Sep 21 19:53:53 UTC 2016


Author: avg
Date: Wed Sep 21 19:53:51 2016
New Revision: 306141
URL: https://svnweb.freebsd.org/changeset/base/306141

Log:
  MFC r305602: intpm: fix attachment to supported AMD FCHs

Modified:
  stable/10/sys/pci/intpm.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/pci/intpm.c
==============================================================================
--- stable/10/sys/pci/intpm.c	Wed Sep 21 19:51:59 2016	(r306140)
+++ stable/10/sys/pci/intpm.c	Wed Sep 21 19:53:51 2016	(r306141)
@@ -238,10 +238,12 @@ intsmb_attach(device_t dev)
 		break;
 #endif
 	case 0x43851002:
-	case 0x780b1022:
 		if (pci_get_revid(dev) >= 0x40)
 			sc->sb8xx = 1;
 		break;
+	case 0x780b1022:
+		sc->sb8xx = 1;
+		break;
 	}
 
 	if (sc->sb8xx) {


More information about the svn-src-all mailing list