diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2009-11-25 19:35:01 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2009-11-25 19:35:01 -0500 |
commit | 4d9d400031417528d4fbe05f845f3759237e48d3 (patch) | |
tree | c40a29e5918e3659f6ae7820a0eac7f39ed04346 | |
parent | 969df6062527fe7019aa02241c321557ed9cb0a8 (diff) | |
download | seabios-4d9d400031417528d4fbe05f845f3759237e48d3.tar.gz |
Misc updates.
Update todo list.
Fix spelling errors in acpi debug messages.
Don't call DISK_STUB() in format - use debug_stub() instead.
-rw-r--r-- | TODO | 2 | ||||
-rw-r--r-- | src/acpi.c | 5 | ||||
-rw-r--r-- | src/disk.c | 2 |
3 files changed, 6 insertions, 3 deletions
@@ -1,3 +1,5 @@ +If POST is rerun, try to do a machine reboot. + Add int 0x1589 support. Review changes committed to coreboot, virtualbox, qemu, kvm, and bochs @@ -642,12 +642,13 @@ acpi_bios_init(void) u16 len = qemu_cfg_next_acpi_table_len(); void *addr = malloc_high(len); if (!addr) { - dprintf(1, "Not enogh memory of ext acpi table of size %d!\n", len); + dprintf(1, "Not enough memory for ext acpi table of size %d!\n" + , len); continue; } ACPI_INIT_TABLE(qemu_cfg_next_acpi_table_load(addr, len)); if (tbl_idx == MAX_ACPI_TABLES) { - dprintf(1, "To many external table!\n"); + dprintf(1, "Too many external tables!\n"); break; } } @@ -190,7 +190,7 @@ disk_1304(struct bregs *regs, struct drive_s *drive_g) static void disk_1305(struct bregs *regs, struct drive_s *drive_g) { - DISK_STUB(regs); + debug_stub(regs); u16 nlc, nlh, nlspt; fillLCHS(drive_g, &nlc, &nlh, &nlspt); |