POWERMODE_TYPE_SYSTEM,
};
-extern void disable_power_mode(int cpu, int type);
-extern void enable_power_mode(int cpu, int type);
-
#ifdef CONFIG_CPU_IDLE
void exynos_update_ip_idle_status(int index, int idle);
int exynos_get_idle_ip_index(const char *name);
+extern void disable_power_mode(int cpu, int type);
+extern void enable_power_mode(int cpu, int type);
#else
static inline void exynos_update_ip_idle_status(int index, int idle)
{
{
return 0;
}
+
+static inline void disable_power_mode(int cpu, int type)
+{
+ return;
+}
+
+static inline void enable_power_mode(int cpu, int type)
+{
+ return;
+}
#endif
#endif /* __EXYNOS_CPUPM_H */