Attach to SMBus on Intel P55 chipset.

This commit is contained in:
tnn 2010-02-06 14:09:25 +00:00
parent 43818948fa
commit 6c77458a9c
1 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: ichsmb.c,v 1.21 2009/05/06 09:25:15 cegger Exp $ */
/* $NetBSD: ichsmb.c,v 1.22 2010/02/06 14:09:25 tnn Exp $ */
/* $OpenBSD: ichiic.c,v 1.18 2007/05/03 09:36:26 dlg Exp $ */
/*
@ -22,7 +22,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: ichsmb.c,v 1.21 2009/05/06 09:25:15 cegger Exp $");
__KERNEL_RCSID(0, "$NetBSD: ichsmb.c,v 1.22 2010/02/06 14:09:25 tnn Exp $");
#include <sys/param.h>
#include <sys/device.h>
@ -106,6 +106,7 @@ ichsmb_match(device_t parent, cfdata_t match, void *aux)
case PCI_PRODUCT_INTEL_82801I_SMB:
case PCI_PRODUCT_INTEL_ICH10_SMB1:
case PCI_PRODUCT_INTEL_ICH10_SMB2:
case PCI_PRODUCT_INTEL_3400_SMB:
return 1;
}
}