xref: /rk3399_ARM-atf/plat/mediatek/lib/pm/mtk_pm.c (revision b0980e584398fc5adc908cd68f1a6deefa943d29)
1 /*
2  * Copyright (c) 2022, MediaTek Inc. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #include <lib/psci/psci.h>
8 
9 static const plat_psci_ops_t plat_psci_ops = {
10 };
11 
12 int plat_setup_psci_ops(uintptr_t sec_entrypoint,
13 			const plat_psci_ops_t **psci_ops)
14 {
15 	*psci_ops = &plat_psci_ops;
16 
17 	return 0;
18 }
19