brintos

brintos / linux-shallow public Read only

0
0
Text · 442 B · db17129 Raw
23 lines · c
1/* SPDX-License-Identifier: GPL-2.0-only */2/*3 * Copyright (C) 2022 Linaro Ltd4 *5 * Author: Daniel Lezcano <daniel.lezcano@linaro.org>6 */7#ifndef ___DTPM_SUBSYS_H__8#define ___DTPM_SUBSYS_H__9 10extern struct dtpm_subsys_ops dtpm_cpu_ops;11extern struct dtpm_subsys_ops dtpm_devfreq_ops;12 13struct dtpm_subsys_ops *dtpm_subsys[] = {14#ifdef CONFIG_DTPM_CPU15	&dtpm_cpu_ops,16#endif17#ifdef CONFIG_DTPM_DEVFREQ18	&dtpm_devfreq_ops,19#endif20};21 22#endif23