1 /* 2 * Copyright (c) 2018-2019, ARM Limited and Contributors. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 #include <drivers/arm/css/scmi.h> 8 #include <plat/arm/common/plat_arm.h> 9 plat_arm_psci_override_pm_ops(plat_psci_ops_t * ops)10const plat_psci_ops_t *plat_arm_psci_override_pm_ops(plat_psci_ops_t *ops) 11 { 12 #if CSS_USE_SCMI_SDS_DRIVER 13 return css_scmi_override_pm_ops(ops); 14 #else 15 return ops; 16 #endif /* CSS_USE_SCMI_SDS_DRIVER */ 17 } 18