diff options
author | 2006-01-02 08:11:25 +0000 | |
---|---|---|
committer | 2006-01-02 08:11:25 +0000 | |
commit | 9eb33f7a9cae8e00ab9927bc3c8573bb69564a55 (patch) | |
tree | 38a91bb6c2b2557761451ee8728c786718a24b7e | |
parent | use the correct format string directive %llu instead of "%ull". (diff) | |
download | wireguard-openbsd-9eb33f7a9cae8e00ab9927bc3c8573bb69564a55.tar.xz wireguard-openbsd-9eb33f7a9cae8e00ab9927bc3c8573bb69564a55.zip |
add the 82801E SMBus controller id.
-rw-r--r-- | sys/dev/pci/ichiic.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/dev/pci/ichiic.c b/sys/dev/pci/ichiic.c index 263a345e3be..bf4e7435070 100644 --- a/sys/dev/pci/ichiic.c +++ b/sys/dev/pci/ichiic.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ichiic.c,v 1.6 2006/01/01 20:52:26 deraadt Exp $ */ +/* $OpenBSD: ichiic.c,v 1.7 2006/01/02 08:11:25 brad Exp $ */ /* * Copyright (c) 2005 Alexander Yurchenko <grange@openbsd.org> @@ -86,15 +86,16 @@ struct cfdriver ichiic_cd = { }; const struct pci_matchid ichiic_ids[] = { + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_6300ESB_SMB }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801AA_SMB }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801AB_SMB }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801BA_SMB }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801CA_SMB }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801DB_SMB }, + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801E_SMB }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801EB_SMB }, - { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_6300ESB_SMB }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801FB_SMB }, - { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801GB_SMB } + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801GB_SMB }, }; int |