mirror of
https://github.com/opnsense/src.git
synced 2026-03-03 05:41:01 -05:00
Add Id for 82801CA (ICH3?). The ich driver seems to work fine on the
laptop that had it.
This commit is contained in:
parent
d5f6245f80
commit
aaa3add4ea
1 changed files with 5 additions and 1 deletions
|
|
@ -453,13 +453,17 @@ ich_pci_probe(device_t dev)
|
|||
return 0;
|
||||
|
||||
case 0x24258086:
|
||||
device_set_desc(dev, "Intel 82901AB (ICH)");
|
||||
device_set_desc(dev, "Intel 82801AB (ICH)");
|
||||
return 0;
|
||||
|
||||
case 0x24458086:
|
||||
device_set_desc(dev, "Intel 82801BA (ICH2)");
|
||||
return 0;
|
||||
|
||||
case 0x24858086:
|
||||
device_set_desc(dev, "Intel 82801CA (ICH3)");
|
||||
return 0;
|
||||
|
||||
default:
|
||||
return ENXIO;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue