aboutsummaryrefslogtreecommitdiffstats
path: root/tools/ocaml/libs/xc/xc_e820.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/ocaml/libs/xc/xc_e820.h')
-rw-r--r--tools/ocaml/libs/xc/xc_e820.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/tools/ocaml/libs/xc/xc_e820.h b/tools/ocaml/libs/xc/xc_e820.h
deleted file mode 100644
index 52bbb0f651..0000000000
--- a/tools/ocaml/libs/xc/xc_e820.h
+++ /dev/null
@@ -1,20 +0,0 @@
-#ifndef __XC_E820_H__
-#define __XC_E820_H__
-
-#include <xen/hvm/e820.h>
-
-/*
- * PC BIOS standard E820 types and structure.
- */
-#define E820_RAM 1
-#define E820_RESERVED 2
-#define E820_ACPI 3
-#define E820_NVS 4
-
-struct e820entry {
- uint64_t addr;
- uint64_t size;
- uint32_t type;
-} __attribute__((packed));
-
-#endif /* __XC_E820_H__ */