summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bl31/bl31.ld.S1
-rw-r--r--bl31/bl31.mk3
-rw-r--r--bl31/head_data.c22
3 files changed, 1 insertions, 25 deletions
diff --git a/bl31/bl31.ld.S b/bl31/bl31.ld.S
index 37329b6..c53cd66 100644
--- a/bl31/bl31.ld.S
+++ b/bl31/bl31.ld.S
@@ -47,7 +47,6 @@ SECTIONS
ro . : {
__RO_START__ = .;
- KEEP(*head_data.o(.head_data*))
KEEP(*bl31_entrypoint.o(.text*))
*(.text*)
*(.rodata*)
diff --git a/bl31/bl31.mk b/bl31/bl31.mk
index be0a2ce..5e26aa0 100644
--- a/bl31/bl31.mk
+++ b/bl31/bl31.mk
@@ -28,8 +28,7 @@
# POSSIBILITY OF SUCH DAMAGE.
#
-BL31_SOURCES+= bl31/head_data.c \
- bl31/bl31_main.c \
+BL31_SOURCES+= bl31/bl31_main.c \
bl31/context_mgmt.c \
bl31/cpu_data_array.c \
bl31/runtime_svc.c \
diff --git a/bl31/head_data.c b/bl31/head_data.c
deleted file mode 100644
index ebb3b9e..0000000
--- a/bl31/head_data.c
+++ /dev/null
@@ -1,22 +0,0 @@
-/*
- *
- * Header for semelis
- *
- */
-
-#include <head_data.h>
-#include <platform_def.h>
-
-struct spare_boot_ctrl_head
-monitor_head __attribute__ ((section(".head_data"))) =
-{
- (0x14000000 | ((sizeof(struct spare_boot_ctrl_head) / sizeof(int)) & 0x00FFFFFF)),
- "monitor",
- 0,
- 0,
- 0,
- 0,
- "2.0",
- "monitor",
- {BL31_BASE}
-};