1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 /* 3 * Copyright (C) 2022 Linaro Ltd 4 * 5 * Author: Daniel Lezcano <daniel.lezcano@linaro.org> 6 */ 7 #ifndef ___DTPM_SUBSYS_H__ 8 #define ___DTPM_SUBSYS_H__ 9 10 extern struct dtpm_subsys_ops dtpm_cpu_ops; 11 12 struct dtpm_subsys_ops *dtpm_subsys[] = { 13 #ifdef CONFIG_DTPM_CPU 14 &dtpm_cpu_ops, 15 #endif 16 }; 17 18 #endif 19