diff options
Diffstat (limited to 'drivers/acpi/processor_perflib.c')
-rw-r--r-- | drivers/acpi/processor_perflib.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/acpi/processor_perflib.c b/drivers/acpi/processor_perflib.c index f32010bee4d5..b477a4be8a69 100644 --- a/drivers/acpi/processor_perflib.c +++ b/drivers/acpi/processor_perflib.c | |||
@@ -50,6 +50,10 @@ ACPI_MODULE_NAME("processor_perflib"); | |||
50 | 50 | ||
51 | static DEFINE_MUTEX(performance_mutex); | 51 | static DEFINE_MUTEX(performance_mutex); |
52 | 52 | ||
53 | /* Use cpufreq debug layer for _PPC changes. */ | ||
54 | #define cpufreq_printk(msg...) cpufreq_debug_printk(CPUFREQ_DEBUG_CORE, \ | ||
55 | "cpufreq-core", msg) | ||
56 | |||
53 | /* | 57 | /* |
54 | * _PPC support is implemented as a CPUfreq policy notifier: | 58 | * _PPC support is implemented as a CPUfreq policy notifier: |
55 | * This means each time a CPUfreq driver registered also with | 59 | * This means each time a CPUfreq driver registered also with |
@@ -131,6 +135,9 @@ static int acpi_processor_get_platform_limit(struct acpi_processor *pr) | |||
131 | return -ENODEV; | 135 | return -ENODEV; |
132 | } | 136 | } |
133 | 137 | ||
138 | cpufreq_printk("CPU %d: _PPC is %d - frequency %s limited\n", pr->id, | ||
139 | (int)ppc, ppc ? "" : "not"); | ||
140 | |||
134 | pr->performance_platform_limit = (int)ppc; | 141 | pr->performance_platform_limit = (int)ppc; |
135 | 142 | ||
136 | return 0; | 143 | return 0; |