aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorSandrine Bailleux <sandrine.bailleux@arm.com>2013-12-02 15:57:09 +0000
committerDan Handley <dan.handley@arm.com>2013-12-12 16:06:48 +0000
commit93ca221c95cc71cab9222d594e0cc3d9f8e852bf (patch)
tree66fed1eea14a980c02d876a2c6df9487d48aca6a /include
parent34edaed563e78081ce17ff1f682628c11d337bf2 (diff)
Make BL31's ns_entry_info a single-cpu area
ns_entry_info used to be a per-cpu array. This is a waste of space because it is only accessed by the primary CPU on the cold boot path. This patch reduces ns_entry_info to a single-cpu area. Change-Id: I647c70c4e76069560f1aaad37a1d5910f56fba4c
Diffstat (limited to 'include')
-rw-r--r--include/bl31.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/bl31.h b/include/bl31.h
index acb1229..5320e58 100644
--- a/include/bl31.h
+++ b/include/bl31.h
@@ -43,7 +43,7 @@ extern unsigned long bl31_entrypoint;
******************************************************************************/
extern void bl31_platform_setup(void);
extern meminfo *bl31_plat_sec_mem_layout(void);
-extern el_change_info* bl31_get_next_image_info(unsigned long);
+extern el_change_info* bl31_get_next_image_info(void);
extern void gic_cpuif_deactivate(unsigned int);
extern void gic_cpuif_setup(unsigned int);
extern void gic_pcpu_distif_setup(unsigned int);