diff options
Diffstat (limited to 'common/spl')
-rw-r--r-- | common/spl/spl_atf.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/common/spl/spl_atf.c b/common/spl/spl_atf.c index 9bd25f6b32c..df0a198d550 100644 --- a/common/spl/spl_atf.c +++ b/common/spl/spl_atf.c @@ -18,13 +18,12 @@ #include <spl.h> #include <asm/cache.h> -static struct bl2_to_bl31_params_mem bl31_params_mem; -static struct bl31_params *bl2_to_bl31_params; - __weak struct bl31_params *bl2_plat_get_bl31_params(uintptr_t bl32_entry, uintptr_t bl33_entry, uintptr_t fdt_addr) { + static struct bl2_to_bl31_params_mem bl31_params_mem; + struct bl31_params *bl2_to_bl31_params; struct entry_point_info *bl32_ep_info; struct entry_point_info *bl33_ep_info; |