Pull up the following (via patch), requested by msaitoh in ticket #1776:

sys/dev/pci/ichsmb.c			1.76-1.77

Add Intel 600 Series PCH support.
This commit is contained in:
martin 2022-10-15 10:33:42 +00:00
parent 6f62d1e621
commit f29381bfe5
1 changed files with 4 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: ichsmb.c,v 1.50.6.5 2021/12/03 17:54:30 martin Exp $ */
/* $NetBSD: ichsmb.c,v 1.50.6.6 2022/10/15 10:33:42 martin Exp $ */
/* $OpenBSD: ichiic.c,v 1.44 2020/10/07 11:23:05 jsg Exp $ */
/*
@ -22,7 +22,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: ichsmb.c,v 1.50.6.5 2021/12/03 17:54:30 martin Exp $");
__KERNEL_RCSID(0, "$NetBSD: ichsmb.c,v 1.50.6.6 2022/10/15 10:33:42 martin Exp $");
#include <sys/param.h>
#include <sys/device.h>
@ -145,6 +145,8 @@ ichsmb_match(device_t parent, cfdata_t match, void *aux)
case PCI_PRODUCT_INTEL_495_YU_SMB:
case PCI_PRODUCT_INTEL_5HS_H_SMB:
case PCI_PRODUCT_INTEL_5HS_LP_SMB:
case PCI_PRODUCT_INTEL_6HS_H_SMB:
case PCI_PRODUCT_INTEL_6HS_LP_SMB:
return 1;
}
}