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/hw/timer.c | |
parent | 9dea59025f8aa3742ff5b27d1772e1651066ffb9 (diff) | |
download | seabios-hppa-2d2fa31b377444991e7993c37f6d6900c6051aca.zip seabios-hppa-2d2fa31b377444991e7993c37f6d6900c6051aca.tar.gz seabios-hppa-2d2fa31b377444991e7993c37f6d6900c6051aca.tar.bz2 |
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/hw/timer.c')
-rw-r--r-- | src/hw/timer.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/hw/timer.c b/src/hw/timer.c index 56c4eca..6477313 100644 --- a/src/hw/timer.c +++ b/src/hw/timer.c @@ -4,12 +4,13 @@ // // This file may be distributed under the terms of the GNU LGPLv3 license. -#include "util.h" // dprintf -#include "pit.h" // PM_SEL_TIMER0 -#include "ioport.h" // PORT_PIT_MODE -#include "config.h" // CONFIG_* #include "biosvar.h" // GET_LOW +#include "config.h" // CONFIG_* +#include "ioport.h" // PORT_PIT_MODE +#include "output.h" // dprintf +#include "pit.h" // PM_SEL_TIMER0 #include "stacks.h" // yield +#include "util.h" // timer_setup #include "x86.h" // cpuid // Bits for PORT_PS2_CTRLB |