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 <plat/arm/common/plat_arm.h> 8 9 #include <scmi.h> 10 11 const plat_psci_ops_t *plat_arm_psci_override_pm_ops(plat_psci_ops_t *ops) 12 { 13 #if CSS_USE_SCMI_SDS_DRIVER 14 return css_scmi_override_pm_ops(ops); 15 #else 16 return ops; 17 #endif /* CSS_USE_SCMI_SDS_DRIVER */ 18 } 19