Add ID for Intel Avoton SMBus controller.

This commit is contained in:
Alexander Motin 2013-11-15 13:19:15 +00:00
parent 667b72800a
commit f00fac180f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=258169

View File

@ -85,6 +85,7 @@ __FBSDID("$FreeBSD$");
#define ID_PATSBURG 0x1d228086
#define ID_CPT 0x1c228086
#define ID_PPT 0x1e228086
#define ID_AVOTON 0x1f3c8086
#define ID_COLETOCRK 0x23B08086
#define ID_LPT 0x8c228086
@ -190,6 +191,9 @@ ichsmb_pci_probe(device_t dev)
case ID_PPT:
device_set_desc(dev, "Intel Panther Point SMBus controller");
break;
case ID_AVOTON:
device_set_desc(dev, "Intel Avoton SMBus controller");
break;
case ID_LPT:
device_set_desc(dev, "Intel Lynx Point SMBus controller");
break;