Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 25 Apr 2012 07:13:16 +0000 (UTC)
From:      Andriy Gapon <avg@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org
Subject:   svn commit: r234677 - in stable/9/sys: i386/conf kern pci
Message-ID:  <201204250713.q3P7DGe5085267@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: avg
Date: Wed Apr 25 07:13:16 2012
New Revision: 234677
URL: http://svn.freebsd.org/changeset/base/234677

Log:
  MFC r234338: intpm: add ATI IXP400 pci id
  
  PR:		kern/136762

Modified:
  stable/9/sys/pci/intpm.c
Directory Properties:
  stable/9/sys/   (props changed)
  stable/9/sys/amd64/include/xen/   (props changed)
  stable/9/sys/boot/   (props changed)
  stable/9/sys/boot/i386/efi/   (props changed)
  stable/9/sys/boot/ia64/efi/   (props changed)
  stable/9/sys/boot/ia64/ski/   (props changed)
  stable/9/sys/boot/powerpc/boot1.chrp/   (props changed)
  stable/9/sys/boot/powerpc/ofw/   (props changed)
  stable/9/sys/cddl/contrib/opensolaris/   (props changed)
  stable/9/sys/conf/   (props changed)
  stable/9/sys/contrib/dev/acpica/   (props changed)
  stable/9/sys/contrib/octeon-sdk/   (props changed)
  stable/9/sys/contrib/pf/   (props changed)
  stable/9/sys/contrib/x86emu/   (props changed)
  stable/9/sys/fs/   (props changed)
  stable/9/sys/fs/ntfs/   (props changed)
  stable/9/sys/i386/conf/XENHVM   (props changed)
  stable/9/sys/kern/subr_witness.c   (props changed)

Modified: stable/9/sys/pci/intpm.c
==============================================================================
--- stable/9/sys/pci/intpm.c	Wed Apr 25 07:10:17 2012	(r234676)
+++ stable/9/sys/pci/intpm.c	Wed Apr 25 07:13:16 2012	(r234677)
@@ -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)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201204250713.q3P7DGe5085267>