mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Add Lynx-Point LP smbus controller ID.
This commit is contained in:
parent
caff7a39cf
commit
7a4864d1bb
1 changed files with 4 additions and 0 deletions
|
|
@ -88,6 +88,7 @@ __FBSDID("$FreeBSD$");
|
|||
#define ID_AVOTON 0x1f3c8086
|
||||
#define ID_COLETOCRK 0x23B08086
|
||||
#define ID_LPT 0x8c228086
|
||||
#define ID_LPTLP 0x9c228086
|
||||
#define ID_WCPT 0x8ca28086
|
||||
#define ID_WCPTLP 0x9ca28086
|
||||
|
||||
|
|
@ -199,6 +200,9 @@ ichsmb_pci_probe(device_t dev)
|
|||
case ID_LPT:
|
||||
device_set_desc(dev, "Intel Lynx Point SMBus controller");
|
||||
break;
|
||||
case ID_LPTLP:
|
||||
device_set_desc(dev, "Intel Lynx Point-LP SMBus controller");
|
||||
break;
|
||||
case ID_WCPT:
|
||||
device_set_desc(dev, "Intel Wildcat Point SMBus controller");
|
||||
break;
|
||||
|
|
|
|||
Loading…
Reference in a new issue