[COMMON] soc: samsung: Adjust extern function by featuring of CPUIDLE.
authorlakkyung.jung <lakkyung.jung@samsung.com>
Tue, 15 May 2018 06:37:47 +0000 (15:37 +0900)
committerChungwoo Park <cww.park@samsung.com>
Mon, 21 May 2018 08:37:35 +0000 (17:37 +0900)
Change-Id: Id433a1967490899ae882e4b5ceed70e29fb18423
Signed-off-by: lakkyung.jung <lakkyung.jung@samsung.com>
include/soc/samsung/exynos-cpupm.h

index 0914f0557062e3ff9396e94f6adf097b45f7ca8b..eb132497d34a93977202db6529fb2cb021d48b77 100644 (file)
@@ -17,12 +17,11 @@ enum {
        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)
 {
@@ -33,6 +32,16 @@ static inline int exynos_get_idle_ip_index(const char *name)
 {
        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 */