ichsmb: add a device id for the Wildcat Point-LP.

MFC after:	1 week
This commit is contained in:
Rui Paulo 2015-04-06 06:02:58 +00:00
parent 3d4c8bbc51
commit 63f9a9fa26
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=281136

View File

@ -86,9 +86,10 @@ __FBSDID("$FreeBSD$");
#define ID_CPT 0x1c228086
#define ID_PPT 0x1e228086
#define ID_AVOTON 0x1f3c8086
#define ID_COLETOCRK 0x23B08086
#define ID_COLETOCRK 0x23B08086
#define ID_LPT 0x8c228086
#define ID_WCPT 0x8ca28086
#define ID_WCPTLP 0x9ca28086
#define PCIS_SERIALBUS_SMBUS_PROGIF 0x00
@ -201,6 +202,9 @@ ichsmb_pci_probe(device_t dev)
case ID_WCPT:
device_set_desc(dev, "Intel Wildcat Point SMBus controller");
break;
case ID_WCPTLP:
device_set_desc(dev, "Intel Wildcat Point-LP SMBus controller");
break;
case ID_COLETOCRK:
device_set_desc(dev, "Intel Coleto Creek SMBus controller");
break;