Commit 4836df17 authored by Joe Perches's avatar Joe Perches Committed by Rafael J. Wysocki

intel_pstate: Use pr_fmt

Prefix the output using the more common kernel style.
Signed-off-by: default avatarJoe Perches <joe@perches.com>
Acked-by: default avatarSrinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
Acked-by: default avatarViresh Kumar <viresh.kumar@linaro.org>
[ rjw: Rebase ]
Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
parent d2499d05
...@@ -10,6 +10,8 @@ ...@@ -10,6 +10,8 @@
* of the License. * of the License.
*/ */
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include <linux/kernel.h> #include <linux/kernel.h>
#include <linux/kernel_stat.h> #include <linux/kernel_stat.h>
#include <linux/module.h> #include <linux/module.h>
...@@ -571,7 +573,7 @@ static ssize_t store_no_turbo(struct kobject *a, struct attribute *b, ...@@ -571,7 +573,7 @@ static ssize_t store_no_turbo(struct kobject *a, struct attribute *b,
update_turbo_state(); update_turbo_state();
if (limits->turbo_disabled) { if (limits->turbo_disabled) {
pr_warn("intel_pstate: Turbo disabled by BIOS or unavailable on processor\n"); pr_warn("Turbo disabled by BIOS or unavailable on processor\n");
return -EPERM; return -EPERM;
} }
...@@ -1239,7 +1241,7 @@ static int intel_pstate_init_cpu(unsigned int cpunum) ...@@ -1239,7 +1241,7 @@ static int intel_pstate_init_cpu(unsigned int cpunum)
intel_pstate_busy_pid_reset(cpu); intel_pstate_busy_pid_reset(cpu);
pr_debug("intel_pstate: controlling: cpu %d\n", cpunum); pr_debug("controlling: cpu %d\n", cpunum);
return 0; return 0;
} }
...@@ -1296,12 +1298,12 @@ static int intel_pstate_set_policy(struct cpufreq_policy *policy) ...@@ -1296,12 +1298,12 @@ static int intel_pstate_set_policy(struct cpufreq_policy *policy)
if (policy->policy == CPUFREQ_POLICY_PERFORMANCE) { if (policy->policy == CPUFREQ_POLICY_PERFORMANCE) {
limits = &performance_limits; limits = &performance_limits;
if (policy->max >= policy->cpuinfo.max_freq) { if (policy->max >= policy->cpuinfo.max_freq) {
pr_debug("intel_pstate: set performance\n"); pr_debug("set performance\n");
intel_pstate_set_performance_limits(limits); intel_pstate_set_performance_limits(limits);
goto out; goto out;
} }
} else { } else {
pr_debug("intel_pstate: set powersave\n"); pr_debug("set powersave\n");
limits = &powersave_limits; limits = &powersave_limits;
} }
...@@ -1353,7 +1355,7 @@ static void intel_pstate_stop_cpu(struct cpufreq_policy *policy) ...@@ -1353,7 +1355,7 @@ static void intel_pstate_stop_cpu(struct cpufreq_policy *policy)
int cpu_num = policy->cpu; int cpu_num = policy->cpu;
struct cpudata *cpu = all_cpu_data[cpu_num]; struct cpudata *cpu = all_cpu_data[cpu_num];
pr_debug("intel_pstate: CPU %d exiting\n", cpu_num); pr_debug("CPU %d exiting\n", cpu_num);
intel_pstate_clear_update_util_hook(cpu_num); intel_pstate_clear_update_util_hook(cpu_num);
...@@ -1598,7 +1600,7 @@ static int __init intel_pstate_init(void) ...@@ -1598,7 +1600,7 @@ static int __init intel_pstate_init(void)
if (intel_pstate_platform_pwr_mgmt_exists()) if (intel_pstate_platform_pwr_mgmt_exists())
return -ENODEV; return -ENODEV;
pr_info("Intel P-state driver initializing.\n"); pr_info("Intel P-state driver initializing\n");
all_cpu_data = vzalloc(sizeof(void *) * num_possible_cpus()); all_cpu_data = vzalloc(sizeof(void *) * num_possible_cpus());
if (!all_cpu_data) if (!all_cpu_data)
...@@ -1615,7 +1617,7 @@ static int __init intel_pstate_init(void) ...@@ -1615,7 +1617,7 @@ static int __init intel_pstate_init(void)
intel_pstate_sysfs_expose_params(); intel_pstate_sysfs_expose_params();
if (hwp_active) if (hwp_active)
pr_info("intel_pstate: HWP enabled\n"); pr_info("HWP enabled\n");
return rc; return rc;
out: out:
...@@ -1641,7 +1643,7 @@ static int __init intel_pstate_setup(char *str) ...@@ -1641,7 +1643,7 @@ static int __init intel_pstate_setup(char *str)
if (!strcmp(str, "disable")) if (!strcmp(str, "disable"))
no_load = 1; no_load = 1;
if (!strcmp(str, "no_hwp")) { if (!strcmp(str, "no_hwp")) {
pr_info("intel_pstate: HWP disabled\n"); pr_info("HWP disabled\n");
no_hwp = 1; no_hwp = 1;
} }
if (!strcmp(str, "force")) if (!strcmp(str, "force"))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment