diff --git a/include/lib/psci/psci.h b/include/lib/psci/psci.h index d08b38c..b27e481 100644 --- a/include/lib/psci/psci.h +++ b/include/lib/psci/psci.h @@ -347,12 +347,6 @@ void __dead2 psci_power_down_wfi(void); void psci_arch_setup(void); -/* - * The below API is deprecated. This is now replaced by bl31_warmboot_entry in - * AArch64. - */ -void psci_entrypoint(void) __deprecated; - #endif /*__ASSEMBLY__*/ #endif /* PSCI_H */ diff --git a/lib/psci/aarch64/psci_helpers.S b/lib/psci/aarch64/psci_helpers.S index 06d6636..78141b1 100644 --- a/lib/psci/aarch64/psci_helpers.S +++ b/lib/psci/aarch64/psci_helpers.S @@ -12,9 +12,6 @@ .globl psci_do_pwrdown_cache_maintenance .globl psci_do_pwrup_cache_maintenance .globl psci_power_down_wfi -#if !ERROR_DEPRECATED - .globl psci_entrypoint -#endif /* ----------------------------------------------------------------------- * void psci_do_pwrdown_cache_maintenance(unsigned int power level); diff --git a/plat/common/aarch64/plat_psci_common.c b/plat/common/aarch64/plat_psci_common.c deleted file mode 100644 index 35afcdb..0000000 --- a/plat/common/aarch64/plat_psci_common.c +++ /dev/null @@ -1,9 +0,0 @@ -/* - * Copyright (c) 2015-2016, ARM Limited and Contributors. All rights reserved. - * - * SPDX-License-Identifier: BSD-3-Clause - */ - -#if !ERROR_DEPRECATED -#include "../plat_psci_common.c" -#endif