Commit 8cf4ddc3 authored by Patrick Mochel's avatar Patrick Mochel

[power] Kill some unnessecary printk()s.

From Pavel Machek.

parent 118e1551
...@@ -31,8 +31,6 @@ void enable_sep_cpu(void *info) ...@@ -31,8 +31,6 @@ void enable_sep_cpu(void *info)
wrmsr(MSR_IA32_SYSENTER_CS, __KERNEL_CS, 0); wrmsr(MSR_IA32_SYSENTER_CS, __KERNEL_CS, 0);
wrmsr(MSR_IA32_SYSENTER_ESP, tss->esp1, 0); wrmsr(MSR_IA32_SYSENTER_ESP, tss->esp1, 0);
wrmsr(MSR_IA32_SYSENTER_EIP, (unsigned long) sysenter_entry, 0); wrmsr(MSR_IA32_SYSENTER_EIP, (unsigned long) sysenter_entry, 0);
printk("Enabling SEP on CPU %d\n", cpu);
put_cpu(); put_cpu();
} }
......
...@@ -197,7 +197,7 @@ acpi_system_suspend( ...@@ -197,7 +197,7 @@ acpi_system_suspend(
break; break;
} }
local_irq_restore(flags); local_irq_restore(flags);
printk(KERN_CRIT "Back to C!\n"); printk(KERN_DEBUG "Back to C!\n");
return status; return status;
} }
......
...@@ -52,8 +52,6 @@ int device_suspend(u32 state, u32 level) ...@@ -52,8 +52,6 @@ int device_suspend(u32 state, u32 level)
struct device * dev; struct device * dev;
int error = 0; int error = 0;
printk(KERN_EMERG "Suspending devices\n");
down_write(&devices_subsys.rwsem); down_write(&devices_subsys.rwsem);
list_for_each_entry_reverse(dev,&devices_subsys.kset.list,kobj.entry) { list_for_each_entry_reverse(dev,&devices_subsys.kset.list,kobj.entry) {
if (dev->driver && dev->driver->suspend) { if (dev->driver && dev->driver->suspend) {
...@@ -114,8 +112,6 @@ void device_resume(u32 level) ...@@ -114,8 +112,6 @@ void device_resume(u32 level)
} }
} }
up_write(&devices_subsys.rwsem); up_write(&devices_subsys.rwsem);
printk(KERN_EMERG "Devices Resumed\n");
} }
/** /**
...@@ -125,8 +121,6 @@ void device_shutdown(void) ...@@ -125,8 +121,6 @@ void device_shutdown(void)
{ {
struct device * dev; struct device * dev;
printk(KERN_EMERG "Shutting down devices\n");
down_write(&devices_subsys.rwsem); down_write(&devices_subsys.rwsem);
list_for_each_entry_reverse(dev,&devices_subsys.kset.list,kobj.entry) { list_for_each_entry_reverse(dev,&devices_subsys.kset.list,kobj.entry) {
pr_debug("shutting down %s: ",dev->name); pr_debug("shutting down %s: ",dev->name);
......
...@@ -459,7 +459,6 @@ static suspend_pagedir_t *create_suspend_pagedir(int nr_copy_pages) ...@@ -459,7 +459,6 @@ static suspend_pagedir_t *create_suspend_pagedir(int nr_copy_pages)
free_suspend_pagedir((unsigned long) pagedir); free_suspend_pagedir((unsigned long) pagedir);
return NULL; return NULL;
} }
printk(".");
SetPageNosave(virt_to_page(p->address)); SetPageNosave(virt_to_page(p->address));
p->orig_address = 0; p->orig_address = 0;
p++; p++;
...@@ -750,7 +749,6 @@ void do_magic_suspend_2(void) ...@@ -750,7 +749,6 @@ void do_magic_suspend_2(void)
free_pages((unsigned long) pagedir_nosave, pagedir_order); free_pages((unsigned long) pagedir_nosave, pagedir_order);
spin_unlock_irq(&suspend_pagedir_lock); spin_unlock_irq(&suspend_pagedir_lock);
mark_swapfiles(((swp_entry_t) {0}), MARK_SWAP_RESUME); mark_swapfiles(((swp_entry_t) {0}), MARK_SWAP_RESUME);
PRINTK(KERN_WARNING "%sLeaving do_magic_suspend_2...\n", name_suspend);
} }
static void do_software_suspend(void) static void do_software_suspend(void)
...@@ -786,12 +784,11 @@ static void do_software_suspend(void) ...@@ -786,12 +784,11 @@ static void do_software_suspend(void)
* using normal kernel mechanism. * using normal kernel mechanism.
*/ */
do_magic(0); do_magic(0);
PRINTK("Restarting processes...\n");
thaw_processes(); thaw_processes();
} }
software_suspend_enabled = 1; software_suspend_enabled = 1;
MDELAY(1000); MDELAY(1000);
restore_console (); restore_console();
} }
/* /*
......
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