Skip to content

Commit

Permalink
Revert "arm: mako_hotplug: Stop spamming the kernel log buffer"
Browse files Browse the repository at this point in the history
This reverts commit 7864546.
  • Loading branch information
hellsgod committed Aug 21, 2013
1 parent 44ec396 commit eeee1f4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions arch/arm/kernel/mako_hotplug.c
Expand Up @@ -61,7 +61,7 @@ static void first_level_work_check(unsigned long temp_diff, unsigned long now)
if (cpu) {
if (!cpu_online(cpu)) {
cpu_up(cpu);
pr_debug
pr_info
("mako_hotplug: cpu%d is up - high load\n",
cpu);
}
Expand All @@ -85,7 +85,7 @@ static void second_level_work_check(unsigned long temp_diff, unsigned long now)
if (cpu) {
if (!cpu_online(cpu)) {
cpu_up(cpu);
pr_debug
pr_info
("mako_hotplug: cpu%d is up - medium load\n",
cpu);
break;
Expand All @@ -106,7 +106,7 @@ static void third_level_work_check(unsigned long temp_diff, unsigned long now)
if (cpu) {
if (cpu_online(cpu)) {
cpu_down(cpu);
pr_debug
pr_info
("mako_hotplug: cpu%d is down - low load\n",
cpu);
}
Expand Down Expand Up @@ -196,7 +196,7 @@ static void mako_hotplug_early_suspend(struct early_suspend *handler)
if (cpu) {
if (cpu_online(cpu)) {
cpu_down(cpu);
pr_debug
pr_info
("mako_hotplug: Early suspend - cpu%d is down\n",
cpu);
}
Expand All @@ -222,7 +222,7 @@ static void __ref mako_hotplug_late_resume(struct early_suspend *handler)
if (cpu) {
if (!cpu_online(cpu)) {
cpu_up(cpu);
pr_debug
pr_info
("mako_hotplug: Late resume - cpu%d is up\n",
cpu);
}
Expand Down

0 comments on commit eeee1f4

Please sign in to comment.