Skip to content

Commit

Permalink
Move memmap.h out of arch/i386; it no longer contains anything
Browse files Browse the repository at this point in the history
architecture-dependent and is needed by the ELF code.
  • Loading branch information
Michael Brown committed Jan 11, 2007
1 parent c6a4055 commit c980cdd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/arch/i386/core/relocate.c
@@ -1,6 +1,6 @@
#include <io.h>
#include <registers.h>
#include <memmap.h>
#include <gpxe/memmap.h>

/*
* Originally by Eric Biederman
Expand Down
2 changes: 1 addition & 1 deletion src/arch/i386/firmware/pcbios/memmap.c
Expand Up @@ -20,7 +20,7 @@
#include <errno.h>
#include <realmode.h>
#include <bios.h>
#include <memmap.h>
#include <gpxe/memmap.h>

/**
* @file
Expand Down
6 changes: 3 additions & 3 deletions src/arch/i386/include/memmap.h → src/include/gpxe/memmap.h
@@ -1,5 +1,5 @@
#ifndef _MEMMAP_H
#define _MEMMAP_H
#ifndef _GPXE_MEMMAP_H
#define _GPXE_MEMMAP_H

#include <stdint.h>

Expand Down Expand Up @@ -31,4 +31,4 @@ struct memory_map {

extern void get_memmap ( struct memory_map *memmap );

#endif /* _MEMMAP_H */
#endif /* _GPXE_MEMMAP_H */

0 comments on commit c980cdd

Please sign in to comment.