mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-19 20:34:20 +08:00
[PATCH] x86-64: fix x86_64-mm-sched-clock-share
Fix for the following patch. Provide dummy cpufreq functions when CPUFREQ is not compiled in. Cc: Andi Kleen <ak@suse.de> Cc: Dave Jones <davej@codemonkey.org.uk> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Andi Kleen <ak@suse.de>
This commit is contained in:
parent
a4831e08b7
commit
184c44d204
@ -32,7 +32,15 @@
|
|||||||
* CPUFREQ NOTIFIER INTERFACE *
|
* CPUFREQ NOTIFIER INTERFACE *
|
||||||
*********************************************************************/
|
*********************************************************************/
|
||||||
|
|
||||||
|
#ifdef CONFIG_CPU_FREQ
|
||||||
int cpufreq_register_notifier(struct notifier_block *nb, unsigned int list);
|
int cpufreq_register_notifier(struct notifier_block *nb, unsigned int list);
|
||||||
|
#else
|
||||||
|
static inline int cpufreq_register_notifier(struct notifier_block *nb,
|
||||||
|
unsigned int list)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
int cpufreq_unregister_notifier(struct notifier_block *nb, unsigned int list);
|
int cpufreq_unregister_notifier(struct notifier_block *nb, unsigned int list);
|
||||||
|
|
||||||
#define CPUFREQ_TRANSITION_NOTIFIER (0)
|
#define CPUFREQ_TRANSITION_NOTIFIER (0)
|
||||||
@ -261,17 +269,22 @@ int cpufreq_set_policy(struct cpufreq_policy *policy);
|
|||||||
int cpufreq_get_policy(struct cpufreq_policy *policy, unsigned int cpu);
|
int cpufreq_get_policy(struct cpufreq_policy *policy, unsigned int cpu);
|
||||||
int cpufreq_update_policy(unsigned int cpu);
|
int cpufreq_update_policy(unsigned int cpu);
|
||||||
|
|
||||||
/* query the current CPU frequency (in kHz). If zero, cpufreq couldn't detect it */
|
|
||||||
unsigned int cpufreq_get(unsigned int cpu);
|
|
||||||
|
|
||||||
/* query the last known CPU freq (in kHz). If zero, cpufreq couldn't detect it */
|
/*
|
||||||
|
* query the last known CPU freq (in kHz). If zero, cpufreq couldn't detect it
|
||||||
|
*/
|
||||||
#ifdef CONFIG_CPU_FREQ
|
#ifdef CONFIG_CPU_FREQ
|
||||||
unsigned int cpufreq_quick_get(unsigned int cpu);
|
unsigned int cpufreq_quick_get(unsigned int cpu);
|
||||||
|
unsigned int cpufreq_get(unsigned int cpu);
|
||||||
#else
|
#else
|
||||||
static inline unsigned int cpufreq_quick_get(unsigned int cpu)
|
static inline unsigned int cpufreq_quick_get(unsigned int cpu)
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
static inline unsigned int cpufreq_get(unsigned int cpu)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user