diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2015-09-29 09:40:46 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2015-10-15 10:52:13 -0400 |
commit | c167e54533124f3eaf3f2caa09e3022196573bec (patch) | |
tree | 61eb5313ff2b672585c6dbcc214d4a80592b0465 /src/system.c | |
parent | 8e385143b7656914052e386a885d8fee44593ca3 (diff) | |
download | seabios-c167e54533124f3eaf3f2caa09e3022196573bec.tar.gz |
e820: Rename memmap.c to e820map.c and use consistent "e820_" prefix
Rename memmap.c to e820map.c as the code in that file only deals with
maintaining the e820 map. Move all the e820 definitions to new file
e820map.h and use a consistent "e820_" prefix on all exported
functions.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/system.c')
-rw-r--r-- | src/system.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/system.c b/src/system.c index 60a6fce5..438e60e2 100644 --- a/src/system.c +++ b/src/system.c @@ -7,9 +7,9 @@ #include "biosvar.h" // GET_GLOBAL #include "bregs.h" // struct bregs +#include "e820map.h" // E820_RAM #include "hw/pic.h" // pic_reset #include "malloc.h" // LegacyRamSize -#include "memmap.h" // E820_RAM #include "output.h" // debug_enter #include "string.h" // memcpy_far #include "util.h" // handle_1553 |