diff options
author | Piotr Jaroszyński <p.jaroszynski@gmail.com> | 2010-07-27 20:37:55 +0200 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2010-08-16 16:54:03 +0100 |
commit | 5bbad9c8f0eacf92fa0ddb6d2d34afe7a0d4278e (patch) | |
tree | 6994da16fdddf65f13409b184fdbba7d3907ff80 /src/image | |
parent | e3c7a1948d080a753aceb92c8bfed07dfdf3daac (diff) | |
download | ipxe-5bbad9c8f0eacf92fa0ddb6d2d34afe7a0d4278e.tar.gz |
[ioapi] Move get_memmap() to the I/O API group
pcbios specific get_memmap() is used by the b44 driver making
all-drivers builds fail on other platforms. Move it to the I/O API
group and provide a dummy implementation on EFI.
Signed-off-by: Piotr Jaroszyński <p.jaroszynski@gmail.com>
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/image')
-rw-r--r-- | src/image/segment.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/image/segment.c b/src/image/segment.c index c3f0b8d5..97f6a995 100644 --- a/src/image/segment.c +++ b/src/image/segment.c @@ -27,7 +27,7 @@ FILE_LICENCE ( GPL2_OR_LATER ); #include <errno.h> #include <ipxe/uaccess.h> -#include <ipxe/memmap.h> +#include <ipxe/io.h> #include <ipxe/errortab.h> #include <ipxe/segment.h> |