diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2005-07-25 05:25:04 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2005-07-25 05:25:04 +0000 |
commit | 250a2d12528efea54af31873f3cb69d85465e1f3 (patch) | |
tree | c616a0d43d491e0c4e579f058f0434420b577436 /sys/arch | |
parent | b650417642ffd84f3a87f68f1386689e1c64e5e8 (diff) |
ichpcib(4) support for 82801FB (ICH6) as found in marco@'s Dell d810.
Tested by and ok marco@, ok brad@
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/i386/pci/ichpcib.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/i386/pci/ichpcib.c b/sys/arch/i386/pci/ichpcib.c index d74752a8d96..dd0963c9df9 100644 --- a/sys/arch/i386/pci/ichpcib.c +++ b/sys/arch/i386/pci/ichpcib.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ichpcib.c,v 1.7 2004/10/05 19:11:01 grange Exp $ */ +/* $OpenBSD: ichpcib.c,v 1.8 2005/07/25 05:25:03 jsg Exp $ */ /* * Copyright (c) 2004 Alexander Yurchenko <grange@openbsd.org> * @@ -92,6 +92,7 @@ const struct pci_matchid ichpcib_devices[] = { { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801DB_LPC }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801DBM_LPC }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801EB_LPC }, + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801FB_LPC }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_6300ESB_LPC } }; |