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 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