diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2008-07-04 13:04:29 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2008-07-04 13:04:29 -0400 |
commit | 9521e26a164eb4689b34d82a5de0d998bdd4c4dc (patch) | |
tree | d3ba8e12b31213defe5fa794e4d0bcec711c871f /src/pcibios.c | |
parent | 0525d29af0803bdfca40f9bb8b1f8cf5b9a84c05 (diff) | |
download | seabios-hppa-9521e26a164eb4689b34d82a5de0d998bdd4c4dc.zip seabios-hppa-9521e26a164eb4689b34d82a5de0d998bdd4c4dc.tar.gz seabios-hppa-9521e26a164eb4689b34d82a5de0d998bdd4c4dc.tar.bz2 |
Extract 'struct bregs' out of biosvar.h; clean up header includes.
Diffstat (limited to 'src/pcibios.c')
-rw-r--r-- | src/pcibios.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/pcibios.c b/src/pcibios.c index 436c106..05d7856 100644 --- a/src/pcibios.c +++ b/src/pcibios.c @@ -8,6 +8,8 @@ #include "types.h" // u32 #include "util.h" // handle_1ab1 #include "pci.h" // pci_config_readl +#include "bregs.h" // struct bregs +#include "biosvar.h" // GET_EBDA #define RET_FUNC_NOT_SUPPORTED 0x81 #define RET_BAD_VENDOR_ID 0x83 |