From bb2024c6d646211226305e8fbd240e603085c93f Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Thu, 11 Jan 2007 01:47:26 +0000 Subject: [PATCH] Move include/buffer.h to include/gpxe/buffer.h --- src/core/buffer.c | 2 +- src/core/image.c | 2 +- src/include/dev.h | 2 +- src/include/{ => gpxe}/buffer.h | 6 +++--- src/include/load_buffer.h | 2 +- src/include/proto.h | 2 +- src/include/tftp.h | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) rename src/include/{ => gpxe}/buffer.h (97%) diff --git a/src/core/buffer.c b/src/core/buffer.c index 5c31ff8d..81288ff5 100644 --- a/src/core/buffer.c +++ b/src/core/buffer.c @@ -43,7 +43,7 @@ #include "io.h" #include "errno.h" #include -#include "buffer.h" +#include /** * Initialise a buffer. diff --git a/src/core/image.c b/src/core/image.c index d8f96b53..ccf7b95e 100644 --- a/src/core/image.c +++ b/src/core/image.c @@ -1,5 +1,5 @@ #include "dev.h" -#include "buffer.h" +#include #include "load_buffer.h" #include "image.h" #include diff --git a/src/include/dev.h b/src/include/dev.h index 77452ad7..c46a366d 100644 --- a/src/include/dev.h +++ b/src/include/dev.h @@ -3,7 +3,7 @@ #include "stdint.h" #include "string.h" -#include "buffer.h" +#include #include "dhcp.h" /* for dhcp_dev_id */ #include #include diff --git a/src/include/buffer.h b/src/include/gpxe/buffer.h similarity index 97% rename from src/include/buffer.h rename to src/include/gpxe/buffer.h index ac4c3148..dba10b88 100644 --- a/src/include/buffer.h +++ b/src/include/gpxe/buffer.h @@ -1,5 +1,5 @@ -#ifndef BUFFER_H -#define BUFFER_H +#ifndef _GPXE_BUFFER_H +#define _GPXE_BUFFER_H #include "compiler.h" /* for doxygen */ #include "stdint.h" @@ -94,4 +94,4 @@ extern void init_buffer ( struct buffer *buffer ); extern int fill_buffer ( struct buffer *buffer, const void *data, off_t offset, size_t len ); -#endif /* BUFFER_H */ +#endif /* _GPXE_BUFFER_H */ diff --git a/src/include/load_buffer.h b/src/include/load_buffer.h index 5aa37410..b13c4e2a 100644 --- a/src/include/load_buffer.h +++ b/src/include/load_buffer.h @@ -1,7 +1,7 @@ #ifndef LOAD_BUFFER_H #define LOAD_BUFFER_H -#include "buffer.h" +#include /* * These functions are architecture-dependent, but the interface must diff --git a/src/include/proto.h b/src/include/proto.h index c16229ef..a3861f2b 100644 --- a/src/include/proto.h +++ b/src/include/proto.h @@ -2,7 +2,7 @@ #define PROTO_H #include -#include "buffer.h" +#include #include struct protocol { diff --git a/src/include/tftp.h b/src/include/tftp.h index ed99035e..bdc63374 100644 --- a/src/include/tftp.h +++ b/src/include/tftp.h @@ -4,7 +4,7 @@ /** @file */ #include -#include "buffer.h" +#include #include "nic.h" #include "ip.h" #include "udp.h"