aboutsummaryrefslogtreecommitdiffstats
path: root/src/post.c
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2009-09-13 10:46:57 -0400
committerKevin O'Connor <kevin@koconnor.net>2009-09-13 10:46:57 -0400
commit40f5b5aa1ecb189353e79009f49276193b3a87e9 (patch)
tree68db17faa1caaedd502eec0d61783720e195cb18 /src/post.c
parent36c93a5e97931eedab98350d12d8a5ee7d8872bb (diff)
downloadseabios-40f5b5aa1ecb189353e79009f49276193b3a87e9.tar.gz
Do PCI initialization before vga init.
The VGA init could depend on the PCI init.
Diffstat (limited to 'src/post.c')
-rw-r--r--src/post.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/post.c b/src/post.c
index 0cedb08c..e2569b0c 100644
--- a/src/post.c
+++ b/src/post.c
@@ -171,6 +171,9 @@ post()
malloc_setup();
pmm_setup();
+ pci_setup();
+ smm_init();
+
pnp_setup();
vga_setup();
@@ -179,9 +182,6 @@ post()
serial_setup();
mouse_setup();
- pci_bios_setup();
- smm_init();
-
init_bios_tables();
boot_setup();