blob: dbf7b6c69198e64e91b4a33c6a032e4e85ce6331 [file] [log] [blame]
Chandni Cherukurie4bf6a02018-11-14 13:43:59 +05301/*
Joel Hutton8aaa4f52019-01-08 15:18:28 +00002 * Copyright (c) 2018-2019, ARM Limited and Contributors. All rights reserved.
Chandni Cherukurie4bf6a02018-11-14 13:43:59 +05303 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <plat_arm.h>
8#include <scmi.h>
9
10const plat_psci_ops_t *plat_arm_psci_override_pm_ops(plat_psci_ops_t *ops)
11{
Joel Hutton8aaa4f52019-01-08 15:18:28 +000012#if CSS_USE_SCMI_SDS_DRIVER
Chandni Cherukurie4bf6a02018-11-14 13:43:59 +053013 return css_scmi_override_pm_ops(ops);
Joel Hutton8aaa4f52019-01-08 15:18:28 +000014#else
15 return ops;
16#endif /* CSS_USE_SCMI_SDS_DRIVER */
Chandni Cherukurie4bf6a02018-11-14 13:43:59 +053017}