diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2009-09-13 10:46:57 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2009-09-13 10:46:57 -0400 |
commit | 40f5b5aa1ecb189353e79009f49276193b3a87e9 (patch) | |
tree | 68db17faa1caaedd502eec0d61783720e195cb18 /src/post.c | |
parent | 36c93a5e97931eedab98350d12d8a5ee7d8872bb (diff) | |
download | seabios-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.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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(); |