Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-only */
0002 /*
0003  * Copyright (C) 2022 Linaro Ltd
0004  *
0005  * Author: Daniel Lezcano <daniel.lezcano@linaro.org>
0006  */
0007 #ifndef ___DTPM_SUBSYS_H__
0008 #define ___DTPM_SUBSYS_H__
0009 
0010 extern struct dtpm_subsys_ops dtpm_cpu_ops;
0011 extern struct dtpm_subsys_ops dtpm_devfreq_ops;
0012 
0013 struct dtpm_subsys_ops *dtpm_subsys[] = {
0014 #ifdef CONFIG_DTPM_CPU
0015     &dtpm_cpu_ops,
0016 #endif
0017 #ifdef CONFIG_DTPM_DEVFREQ
0018     &dtpm_devfreq_ops,
0019 #endif
0020 };
0021 
0022 #endif