mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-17 10:26:15 +00:00
ichsmb: add another pci id
This is SMBus controller found in Intel Platform Controller Hub (PCH), which is a general name that refers to Intel 5 Series chipsets and 3400 Series chipsets. Submitted by: Dmitry S. Luhtionov <mitya@cabletv.dp.ua> MFC after: 3 days
This commit is contained in:
parent
97219abf05
commit
ac2703ea39
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=200602
@ -78,6 +78,7 @@ __FBSDID("$FreeBSD$");
|
||||
#define ID_82801H 0x283e8086
|
||||
#define ID_82801I 0x29308086
|
||||
#define ID_82801JI 0x3a308086
|
||||
#define ID_PCH 0x3b308086
|
||||
#define ID_6300ESB 0x25a48086
|
||||
#define ID_631xESB 0x269b8086
|
||||
|
||||
@ -164,6 +165,9 @@ ichsmb_pci_probe(device_t dev)
|
||||
case ID_82801JI:
|
||||
device_set_desc(dev, "Intel 82801JI (ICH10) SMBus controller");
|
||||
break;
|
||||
case ID_PCH:
|
||||
device_set_desc(dev, "Intel PCH SMBus controller");
|
||||
break;
|
||||
case ID_6300ESB:
|
||||
device_set_desc(dev, "Intel 6300ESB (ICH) SMBus controller");
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user