Add Intel Lynx Point PCH SMBus Device IDs

This commit is contained in:
Jack F Vogel 2013-01-02 22:01:26 +00:00
parent 9e81697fdf
commit cf40e447b9

View File

@ -85,6 +85,7 @@ __FBSDID("$FreeBSD$");
#define ID_PATSBURG 0x1d228086
#define ID_CPT 0x1c228086
#define ID_PPT 0x1e228086
#define ID_LPT 0x8c228086
#define PCIS_SERIALBUS_SMBUS_PROGIF 0x00
@ -188,6 +189,9 @@ ichsmb_pci_probe(device_t dev)
case ID_PPT:
device_set_desc(dev, "Intel Panther Point SMBus controller");
break;
case ID_LPT:
device_set_desc(dev, "Intel Lynx Point SMBus controller");
break;
default:
return (ENXIO);
}