diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2006-01-18 02:57:28 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2006-01-18 02:57:28 +0000 |
commit | 4b153ddbda67803614628c19d76564daf0909d52 (patch) | |
tree | 5f0bca57f63a4fdc3b137dcc5f5998d13212a510 /sys | |
parent | 25150c3dac5c1b55b902f99f437c7cc04957d719 (diff) |
add some PIIX compatible SMBus controllers from SMSC and ATI.
Thanks to ian@ and msf@ for testing with an ATI IXP400 controller.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/pci/piixpm.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sys/dev/pci/piixpm.c b/sys/dev/pci/piixpm.c index 446b44d7516..3368e1219c5 100644 --- a/sys/dev/pci/piixpm.c +++ b/sys/dev/pci/piixpm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: piixpm.c,v 1.17 2006/01/15 10:28:17 grange Exp $ */ +/* $OpenBSD: piixpm.c,v 1.18 2006/01/18 02:57:27 brad Exp $ */ /* * Copyright (c) 2005, 2006 Alexander Yurchenko <grange@openbsd.org> @@ -90,7 +90,11 @@ const struct pci_matchid piixpm_ids[] = { { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82440MX_PM }, { PCI_VENDOR_RCC, PCI_PRODUCT_RCC_OSB4 }, { PCI_VENDOR_RCC, PCI_PRODUCT_RCC_CSB5 }, - { PCI_VENDOR_RCC, PCI_PRODUCT_RCC_CSB6 } + { PCI_VENDOR_RCC, PCI_PRODUCT_RCC_CSB6 }, + { PCI_VENDOR_SMSC, PCI_PRODUCT_SMSC_VICTORY66_PM }, + { PCI_VENDOR_ATI, PCI_PRODUCT_ATI_SB200_SMB }, + { PCI_VENDOR_ATI, PCI_PRODUCT_ATI_IXP_SMB_300 }, + { PCI_VENDOR_ATI, PCI_PRODUCT_ATI_IXP_SMB_400 } }; int |