summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/devices/device.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/device.c b/src/devices/device.c
index 8ad9787431..a2619bf000 100644
--- a/src/devices/device.c
+++ b/src/devices/device.c
@@ -932,6 +932,10 @@ void dev_configure(void)
struct device *root;
struct device *child;
+#if CONFIG_VGA_BRIDGE_SETUP == 1
+ set_vga_bridge_bits();
+#endif
+
printk(BIOS_INFO, "Allocating resources...\n");
root = &dev_root;
@@ -1024,10 +1028,6 @@ void dev_configure(void)
printk(BIOS_INFO, "Done setting resources.\n");
print_resource_tree(root, BIOS_SPEW, "After assigning values.");
-#if CONFIG_VGA_BRIDGE_SETUP == 1
- set_vga_bridge_bits();
-#endif
-
printk(BIOS_INFO, "Done allocating resources.\n");
}