1 /* 2 * Copyright 2024 NXP 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 #include <lib/psci/psci.h> 8 #include <plat/common/platform.h> 9 plat_setup_psci_ops(uintptr_t sec_entrypoint,const plat_psci_ops_t ** psci_ops)10int plat_setup_psci_ops(uintptr_t sec_entrypoint, 11 const plat_psci_ops_t **psci_ops) 12 { 13 static const plat_psci_ops_t s32g2_psci_ops = { 14 }; 15 16 *psci_ops = &s32g2_psci_ops; 17 18 return 0; 19 } 20 21