diff options
Diffstat (limited to 'src/devices/device.c')
-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; } } |