diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2010-09-25 14:53:15 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2010-09-25 14:53:15 -0400 |
commit | 4d96edc76ba1e7556700908c10cb0e257cce5573 (patch) | |
tree | a617f3410df24b01c0bf10d12c0d076fcc85e45c /src/post.c | |
parent | a899945754d20f084bb73a1cd2453f8cabfeb0e8 (diff) | |
download | seabios-4d96edc76ba1e7556700908c10cb0e257cce5573.tar.gz |
Cleanup - it's no longer necessary to manually reset global variables.
Now that a soft-reboot forces a hard-reboot, it is no longer necessary
to manually reset global variables.
Diffstat (limited to 'src/post.c')
-rw-r--r-- | src/post.c | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -205,13 +205,11 @@ maininit(void) init_bda(); // Init base pc hardware. - thread_setup(); pic_setup(); timer_setup(); mathcp_setup(); // Initialize mtrr - smp_probe_setup(); mtrr_setup(); // Initialize pci @@ -220,7 +218,6 @@ maininit(void) // Initialize internal tables boot_setup(); - drive_setup(); // Start hardware initialization (if optionrom threading) if (CONFIG_THREADS && CONFIG_THREAD_OPTIONROMS) @@ -327,7 +324,6 @@ void VISIBLE32INIT post(void) { // Detect ram and setup internal malloc. - memmap_setup(); qemu_cfg_port_probe(); ram_probe(); malloc_setup(); |