rk: ion: resolve build err
[firefly-linux-kernel-4.4.55.git] / drivers / gpu / arm / t6xx / kbase / src / common / mali_kbase_pm_ca_fixed.h
1 /*
2  *
3  * (C) COPYRIGHT ARM Limited. All rights reserved.
4  *
5  * This program is free software and is provided to you under the terms of the
6  * GNU General Public License version 2 as published by the Free Software
7  * Foundation, and any use by you of this program is subject to the terms
8  * of such GNU licence.
9  *
10  * A copy of the licence is included with the program, and can also be obtained
11  * from Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
12  * Boston, MA  02110-1301, USA.
13  *
14  */
15
16
17
18 /**
19  * @file mali_kbase_pm_ca_fixed.h
20  * A power policy implementing fixed core availability
21  */
22
23 #ifndef MALI_KBASE_PM_CA_FIXED_H
24 #define MALI_KBASE_PM_CA_FIXED_H
25
26 /**
27  * Private structure for policy instance data.
28  *
29  * This contains data that is private to the particular power policy that is active.
30  */
31 typedef struct kbasep_pm_ca_policy_fixed {
32         /** No state needed - just have a dummy variable here */
33         int dummy;
34 } kbasep_pm_ca_policy_fixed;
35
36 #endif /* MALI_KBASE_PM_CA_FIXED_H */
37