1 /*
2  * Copyright (c) 2021 Carlo Caione <ccaione@baylibre.com>
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #include <zephyr/kernel.h>
8 
pm_cpu_on(unsigned long cpuid,uintptr_t entry_point)9 int __weak pm_cpu_on(unsigned long cpuid, uintptr_t entry_point)
10 {
11 	return -ENOTSUP;
12 }
13 
pm_cpu_off(void)14 int __weak pm_cpu_off(void)
15 {
16 	return -ENOTSUP;
17 }
18