mirror of
https://github.com/opnsense/src.git
synced 2026-04-15 14:29:58 -04:00
Before MFC'ing the previous commit, I noticed I'd left out a case.
Add in missing case for i845G in the attach routine. I'll MFC this with the rest of the change after the 4.10 codefreeze lifts. Reviewed By: Doug Rabson
This commit is contained in:
parent
84ff42d8ff
commit
e9c2ca4e26
2 changed files with 2 additions and 0 deletions
|
|
@ -215,6 +215,7 @@ agp_intel_attach(device_t dev)
|
|||
case 0x33408086: /* i855 */
|
||||
case 0x25708086: /* i865 */
|
||||
case 0x25788086: /* i875P */
|
||||
case 0x25608086: /* i845G */
|
||||
pci_write_config(dev, AGP_INTEL_I845_MCHCFG,
|
||||
(pci_read_config(dev, AGP_INTEL_I845_MCHCFG, 1)
|
||||
| (1 << 1)), 1);
|
||||
|
|
|
|||
|
|
@ -215,6 +215,7 @@ agp_intel_attach(device_t dev)
|
|||
case 0x33408086: /* i855 */
|
||||
case 0x25708086: /* i865 */
|
||||
case 0x25788086: /* i875P */
|
||||
case 0x25608086: /* i845G */
|
||||
pci_write_config(dev, AGP_INTEL_I845_MCHCFG,
|
||||
(pci_read_config(dev, AGP_INTEL_I845_MCHCFG, 1)
|
||||
| (1 << 1)), 1);
|
||||
|
|
|
|||
Loading…
Reference in a new issue