diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2013-09-14 21:55:26 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2013-09-18 20:48:34 -0400 |
commit | 2d2fa31b377444991e7993c37f6d6900c6051aca (patch) | |
tree | 0d37e45165d29fe4aae15d17f5d19bcf795ea51d /src/block.c | |
parent | 9dea59025f8aa3742ff5b27d1772e1651066ffb9 (diff) | |
download | seabios-2d2fa31b377444991e7993c37f6d6900c6051aca.tar.gz |
Move function definitions for output.c from util.h to new file output.h.
Also, sort the order of include files in the c files.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/block.c')
-rw-r--r-- | src/block.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/block.c b/src/block.c index 5c8bf751..73d60681 100644 --- a/src/block.c +++ b/src/block.c @@ -5,15 +5,15 @@ // // This file may be distributed under the terms of the GNU LGPLv3 license. -#include "disk.h" // struct ata_s #include "biosvar.h" // GET_GLOBAL -#include "hw/cmos.h" // inb_cmos -#include "util.h" // dprintf +#include "disk.h" // struct ata_s #include "hw/ata.h" // process_ata_op #include "hw/ahci.h" // process_ahci_op -#include "hw/virtio-blk.h" // process_virtio_blk_op +#include "hw/cmos.h" // inb_cmos #include "hw/blockcmd.h" // cdb_* +#include "hw/virtio-blk.h" // process_virtio_blk_op #include "malloc.h" // malloc_low +#include "output.h" // dprintf #include "stacks.h" // stack_hop #include "string.h" // checksum |