armv8: layerscape: remove determine_mp_bootpg()

Only the PowerPC architecture needs this function. Remove it.

Signed-off-by: Michael Walle <michael@walle.cc>
Reviewed-by: Priyanka Jain <priyanka.jain@nxp.com>
This commit is contained in:
Michael Walle 2020-06-01 21:53:30 +02:00 committed by Priyanka Jain
parent b1c41231c4
commit c31ac97f96
2 changed files with 0 additions and 6 deletions

View File

@ -23,11 +23,6 @@ void *get_spin_tbl_addr(void)
return &__spin_table;
}
phys_addr_t determine_mp_bootpg(void)
{
return (phys_addr_t)&secondary_boot_code;
}
void update_os_arch_secondary_cores(uint8_t os_arch)
{
u64 *table = get_spin_tbl_addr();

View File

@ -42,7 +42,6 @@ int fsl_layerscape_wake_seconday_cores(void);
static inline int fsl_layerscape_wake_seconday_cores(void) { return 0; }
#endif
void *get_spin_tbl_addr(void);
phys_addr_t determine_mp_bootpg(void);
int is_core_online(u64 cpu_id);
u32 cpu_pos_mask(void);
#endif