Change PCI_BRIDGE_CONTROL to PCI_BRIDGE_CTL_VGA

git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1324 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Li-Ta Lo 2004-01-08 21:15:49 +00:00
parent 88c4ed576f
commit db7f47cbbf
1 changed files with 1 additions and 1 deletions

View File

@ -382,7 +382,7 @@ static void allocate_vga_resource(void)
}
/* Now walk up the bridges setting the VGA enable */
while(bus) {
bus->bridge_ctrl |= PCI_BRIDGE_CONTROL;
bus->bridge_ctrl |= PCI_BRIDGE_CTL_VGA;
bus = (bus == bus->dev->bus)? 0 : bus->dev->bus;
}
}