diff options
author | Ian Spray <ian.spray@arm.com> | 2014-01-02 16:57:12 +0000 |
---|---|---|
committer | Dan Handley <dan.handley@arm.com> | 2014-01-17 10:27:52 +0000 |
commit | 8468739c5f19928240934f80c6582e45985bf975 (patch) | |
tree | 2ef94904cffe808aabe0639398fb2aaa179fa371 /include/bl31.h | |
parent | e22fb91e3145ab95e44c2ad291b330ae79847893 (diff) |
Move GIC setup to a separate file
GIC setup code which used to be in bl31_plat_setup.c is now in fvp_gic.c
to simplify future changes to other bootloader stages. This patch moves
code from bl31_plat_setup.c to fvp_gic.c, simplifies the include file
list for bl31_plat_setup.c, moves GIC declarations from the bl31.h header
file into the platform.h, and reworks files according to coding style
guide.
Change-Id: I48d82a4ba33e7114dcc88f9ca98767a06cf8f417
Diffstat (limited to 'include/bl31.h')
-rw-r--r-- | include/bl31.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/bl31.h b/include/bl31.h index 5320e582..f80eae11 100644 --- a/include/bl31.h +++ b/include/bl31.h @@ -44,8 +44,4 @@ 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(void); -extern void gic_cpuif_deactivate(unsigned int); -extern void gic_cpuif_setup(unsigned int); -extern void gic_pcpu_distif_setup(unsigned int); -extern void gic_setup(void); #endif /* __BL31_H__ */ |