summaryrefslogtreecommitdiffstats
path: root/src/include/osdep.h
diff options
context:
space:
mode:
authorMichael Brown2007-07-14 16:52:23 +0200
committerMichael Brown2007-07-14 16:52:23 +0200
commit25fd42ca870fe7b19827dcf4d72be5b28e4d7c33 (patch)
treef4350f471abcc06519275729cb550c04361b83f3 /src/include/osdep.h
parentDead code removal. (diff)
downloadipxe-25fd42ca870fe7b19827dcf4d72be5b28e4d7c33.tar.gz
ipxe-25fd42ca870fe7b19827dcf4d72be5b28e4d7c33.tar.xz
ipxe-25fd42ca870fe7b19827dcf4d72be5b28e4d7c33.zip
Reduced etherboot.h dependencies to avoid unnecessary rebuilds.
etherboot.h is only now used by drivers that have not been updated to the new API.
Diffstat (limited to 'src/include/osdep.h')
-rw-r--r--src/include/osdep.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/include/osdep.h b/src/include/osdep.h
deleted file mode 100644
index bc1f1668..00000000
--- a/src/include/osdep.h
+++ /dev/null
@@ -1,32 +0,0 @@
-#ifndef ETHERBOOT_OSDEP_H
-#define ETHERBOOT_OSDEP_H
-
-/* Optimization barrier */
-/* The "volatile" is due to gcc bugs */
-#define barrier() __asm__ __volatile__("": : :"memory")
-
-#include "stdint.h"
-#include "limits.h"
-#include "string.h"
-#include "io.h"
-#include "endian.h"
-#include "byteswap.h"
-#include "setjmp.h"
-#include "latch.h"
-
-typedef unsigned long Address;
-
-/* ANSI prototyping macro */
-#ifdef __STDC__
-#define P(x) x
-#else
-#define P(x) ()
-#endif
-
-#endif
-
-/*
- * Local variables:
- * c-basic-offset: 8
- * End:
- */