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/ahci.h | |
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/hw/ahci.h')
-rw-r--r-- | src/hw/ahci.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/hw/ahci.h b/src/hw/ahci.h index c3d3a703..c3d24026 100644 --- a/src/hw/ahci.h +++ b/src/hw/ahci.h @@ -1,6 +1,9 @@ #ifndef __AHCI_H #define __AHCI_H +#include "types.h" // u32 +#include "disk.h" // struct drive_s + struct sata_cmd_fis { u8 reg; u8 pmp_type; |