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:
Peter Edwards 2004-04-03 13:24:37 +00:00
parent 84ff42d8ff
commit e9c2ca4e26
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=127790
2 changed files with 2 additions and 0 deletions

View File

@ -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);

View File

@ -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);