aboutsummaryrefslogtreecommitdiff
path: root/src/devices
diff options
context:
space:
mode:
authorLi-Ta Lo <ollie@lanl.gov>2004-01-08 21:15:49 +0000
committerLi-Ta Lo <ollie@lanl.gov>2004-01-08 21:15:49 +0000
commitdb7f47cbbffb532deacb2be4fbfa15f6f3a4ef55 (patch)
tree1921e720a0a444565970b8d5b926a2f49b414b18 /src/devices
parent88c4ed576f672def4afc59e71e0d9b9e6f2b7648 (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
Diffstat (limited to 'src/devices')
-rw-r--r--src/devices/device.c2
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;
}
}