svn commit: r234338 - head/sys/pci

Andriy Gapon avg at FreeBSD.org
Mon Apr 16 10:33:47 UTC 2012


Author: avg
Date: Mon Apr 16 10:33:46 2012
New Revision: 234338
URL: http://svn.freebsd.org/changeset/base/234338

Log:
  intpm: add ATI IXP400 pci id
  
  PR:		kern/136762
  Submitted by:	Aurelien Mere <freebsd at amc-os.com>
  Tested by:	Jens Link <jens.link at gmx.de>
  MFC after:	5 days

Modified:
  head/sys/pci/intpm.c

Modified: head/sys/pci/intpm.c
==============================================================================
--- head/sys/pci/intpm.c	Mon Apr 16 09:38:20 2012	(r234337)
+++ head/sys/pci/intpm.c	Mon Apr 16 10:33:46 2012	(r234338)
@@ -98,6 +98,9 @@ intsmb_probe(device_t dev)
 #endif
 		device_set_desc(dev, "Intel PIIX4 SMBUS Interface");
 		break;
+	case 0x43721002:
+		device_set_desc(dev, "ATI IXP400 SMBus Controller");
+		break;
 	case 0x43851002:
 		/* SB800 and newer can not be configured in a compatible way. */
 		if (pci_get_revid(dev) >= 0x40)


More information about the svn-src-all mailing list