diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2013-09-02 20:48:46 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2013-09-02 20:48:46 -0400 |
commit | 5d369d8d9eb5326db111cc2e518c74739dbe3f84 (patch) | |
tree | 1fe04c2372e2041c5feb7e6c177a25f692cf4e76 /src/resume.c | |
parent | 3cb0f504a782c1a9c790b939631854473c039397 (diff) | |
download | seabios-5d369d8d9eb5326db111cc2e518c74739dbe3f84.tar.gz |
Move code centered around specific hardware devices to src/hw/
Move many C files from the src/ directory to the new src/hw/ directory.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/resume.c')
-rw-r--r-- | src/resume.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/resume.c b/src/resume.c index 48e1bd88..8ec6e37b 100644 --- a/src/resume.c +++ b/src/resume.c @@ -6,13 +6,13 @@ #include "util.h" // dprintf #include "ioport.h" // outb -#include "pic.h" // pic_eoi2 +#include "hw/pic.h" // pic_eoi2 #include "biosvar.h" // struct bios_data_area_s #include "bregs.h" // struct bregs #include "acpi.h" // find_resume_vector -#include "ps2port.h" // i8042_reboot -#include "pci.h" // pci_reboot -#include "cmos.h" // inb_cmos +#include "hw/ps2port.h" // i8042_reboot +#include "hw/pci.h" // pci_reboot +#include "hw/cmos.h" // inb_cmos // Indicator if POST phase has been run. int HaveRunPost VARFSEG; |