]> git.baikalelectronics.ru Git - arm-tf.git/commitdiff
refactor(ti): remove empty validate_ns_entrypoint function
authorAndrew Davis <afd@ti.com>
Wed, 16 Nov 2022 00:11:25 +0000 (18:11 -0600)
committerAndrew Davis <afd@ti.com>
Fri, 13 Jan 2023 00:45:48 +0000 (18:45 -0600)
Signed-off-by: Andrew Davis <afd@ti.com>
Change-Id: I93165e9f26f5a5b600e7b6a9d48df75d62e89f17

plat/ti/k3/common/k3_psci.c

index 4eb3ab5623b293011956fe63d1c43a21bdd5615c..d84649567cf804bb4502313d483d349d27e68945 100644 (file)
@@ -234,13 +234,6 @@ static int k3_validate_power_state(unsigned int power_state,
        return PSCI_E_SUCCESS;
 }
 
-static int k3_validate_ns_entrypoint(uintptr_t entrypoint)
-{
-       /* TODO: perform the proper validation */
-
-       return PSCI_E_SUCCESS;
-}
-
 #if K3_PM_SYSTEM_SUSPEND
 static void k3_pwr_domain_suspend(const psci_power_state_t *target_state)
 {
@@ -288,7 +281,6 @@ static const plat_psci_ops_t k3_plat_psci_ops = {
        .system_off = k3_system_off,
        .system_reset = k3_system_reset,
        .validate_power_state = k3_validate_power_state,
-       .validate_ns_entrypoint = k3_validate_ns_entrypoint
 };
 
 int plat_setup_psci_ops(uintptr_t sec_entrypoint,