xref: /rk3399_ARM-atf/plat/mediatek/drivers/cpu_qos/mt8196/mtk_cpuqos.c (revision 02309a84fbfb8b3469aa7dba52ea15c9bf2a768d)
1 /*
2  * Copyright (c) 2025, MediaTek Inc. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #include <lib/pm/mtk_pm.h>
8 #include <mtk_bl31_interface.h>
9 
cpu_qos_handle_cluster_on_event_cb(const void * arg)10 static void *cpu_qos_handle_cluster_on_event_cb(const void *arg)
11 {
12 	return cpu_qos_handle_cluster_on_event(arg);
13 }
14 
15 MT_CPUPM_SUBCRIBE_CLUSTER_PWR_ON(cpu_qos_handle_cluster_on_event_cb);
16