blob: 6e3ab37a22f7f9a37c345d0733c1e4b3e65efac4 [file] [log] [blame]
Rex-BC Chen749b2112021-09-28 11:24:09 +08001/*
2 * Copyright (c) 2021, MediaTek Inc. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
James Lo4ac7a412021-10-06 18:12:30 +08007#include <common/debug.h>
Rex-BC Chen749b2112021-09-28 11:24:09 +08008#include <lib/psci/psci.h>
9
10static const plat_psci_ops_t plat_psci_ops = {
11};
12
13int plat_setup_psci_ops(uintptr_t sec_entrypoint,
14 const plat_psci_ops_t **psci_ops)
15{
16 *psci_ops = &plat_psci_ops;
17
18 return 0;
19}