blob: 4884ea51979508b667741ae307ffbade8bb4d8ea [file] [log] [blame]
Manish Pandey52990ae2018-11-28 11:20:37 +00001/*
2 * Copyright (c) 2019, Arm Limited and Contributors. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <lib/psci/psci.h>
8#include <plat/arm/common/plat_arm.h>
9
10/*******************************************************************************
11 * Export the platform handlers via plat_arm_psci_pm_ops. The ARM Standard
12 * platform layer will take care of registering the handlers with PSCI.
13 ******************************************************************************/
14plat_psci_ops_t plat_arm_psci_pm_ops = {
15 /* dummy struct */
16 .validate_ns_entrypoint = NULL
17};
18
19const plat_psci_ops_t *plat_arm_psci_override_pm_ops(plat_psci_ops_t *ops)
20{
21 return ops;
22}