mirror of
https://github.com/opnsense/src.git
synced 2026-04-28 17:49:22 -04:00
Correctly identify the Intel 82830 AGP bridge.
This commit is contained in:
parent
e4db1131b8
commit
64eecf3a43
2 changed files with 6 additions and 0 deletions
|
|
@ -83,6 +83,9 @@ agp_intel_match(device_t dev)
|
|||
case 0x25008086:
|
||||
return ("Intel 82820 host to AGP bridge");
|
||||
|
||||
case 0x35758086:
|
||||
return ("Intel 82830 host to AGP bridge");
|
||||
|
||||
case 0x1a218086:
|
||||
return ("Intel 82840 host to AGP bridge");
|
||||
|
||||
|
|
|
|||
|
|
@ -83,6 +83,9 @@ agp_intel_match(device_t dev)
|
|||
case 0x25008086:
|
||||
return ("Intel 82820 host to AGP bridge");
|
||||
|
||||
case 0x35758086:
|
||||
return ("Intel 82830 host to AGP bridge");
|
||||
|
||||
case 0x1a218086:
|
||||
return ("Intel 82840 host to AGP bridge");
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue