Module Name: src Committed By: jakllsch Date: Tue Aug 17 01:45:51 UTC 2010
Modified Files: src/sys/arch/x86/pci: ichlpcib.c Log Message: Match ichlpcib(4) on ICH0 (82801AB_LPC). To generate a diff of this commit: cvs rdiff -u -r1.26 -r1.27 src/sys/arch/x86/pci/ichlpcib.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/arch/x86/pci/ichlpcib.c diff -u src/sys/arch/x86/pci/ichlpcib.c:1.26 src/sys/arch/x86/pci/ichlpcib.c:1.27 --- src/sys/arch/x86/pci/ichlpcib.c:1.26 Fri Jul 23 02:23:58 2010 +++ src/sys/arch/x86/pci/ichlpcib.c Tue Aug 17 01:45:51 2010 @@ -1,4 +1,4 @@ -/* $NetBSD: ichlpcib.c,v 1.26 2010/07/23 02:23:58 jakllsch Exp $ */ +/* $NetBSD: ichlpcib.c,v 1.27 2010/08/17 01:45:51 jakllsch Exp $ */ /*- * Copyright (c) 2004 The NetBSD Foundation, Inc. @@ -39,7 +39,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: ichlpcib.c,v 1.26 2010/07/23 02:23:58 jakllsch Exp $"); +__KERNEL_RCSID(0, "$NetBSD: ichlpcib.c,v 1.27 2010/08/17 01:45:51 jakllsch Exp $"); #include <sys/types.h> #include <sys/param.h> @@ -177,6 +177,7 @@ int has_ich5_hpet; } lpcib_devices[] = { { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801AA_LPC, 0, 0 }, + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801AB_LPC, 0, 0 }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801BA_LPC, 0, 0 }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801BAM_LPC, 0, 0 }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801CA_LPC, 0, 0 },