|
@@ -93,8 +93,16 @@ struct cpufreq_policy {
|
|
|
#define CPUFREQ_SHARED_TYPE_ALL (2) /* All dependent CPUs should set freq */
|
|
|
#define CPUFREQ_SHARED_TYPE_ANY (3) /* Freq can be set from any dependent CPU*/
|
|
|
|
|
|
+#ifdef CONFIG_CPU_FREQ
|
|
|
struct cpufreq_policy *cpufreq_cpu_get(unsigned int cpu);
|
|
|
void cpufreq_cpu_put(struct cpufreq_policy *policy);
|
|
|
+#else
|
|
|
+static inline struct cpufreq_policy *cpufreq_cpu_get(unsigned int cpu)
|
|
|
+{
|
|
|
+ return NULL;
|
|
|
+}
|
|
|
+static inline void cpufreq_cpu_put(struct cpufreq_policy *policy) { }
|
|
|
+#endif
|
|
|
|
|
|
static inline bool policy_is_shared(struct cpufreq_policy *policy)
|
|
|
{
|