diff options
author | Li-Ta Lo <ollie@lanl.gov> | 2004-01-08 21:15:49 +0000 |
---|---|---|
committer | Li-Ta Lo <ollie@lanl.gov> | 2004-01-08 21:15:49 +0000 |
commit | db7f47cbbffb532deacb2be4fbfa15f6f3a4ef55 (patch) | |
tree | 1921e720a0a444565970b8d5b926a2f49b414b18 | |
parent | 88c4ed576f672def4afc59e71e0d9b9e6f2b7648 (diff) |
Change PCI_BRIDGE_CONTROL to PCI_BRIDGE_CTL_VGA
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1324 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
-rw-r--r-- | src/devices/device.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/device.c b/src/devices/device.c index c6dd5fc4ad..4f1cbb2c5d 100644 --- a/src/devices/device.c +++ b/src/devices/device.c @@ -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; } } |