aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
authorPavel Machek <pavel@suse.cz>2008-07-23 21:28:32 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2008-07-24 10:47:22 -0700
commit0d63081d418c73cc187c893069e0f24c4c6eecd3 (patch)
tree2ee2d001d47dd38173820efbd915ed9120817575 /kernel
parentfb9ba4e95921f71d874beee2d0964fc2322b47a2 (diff)
downloadkernel_samsung_smdk4412-0d63081d418c73cc187c893069e0f24c4c6eecd3.tar.gz
kernel_samsung_smdk4412-0d63081d418c73cc187c893069e0f24c4c6eecd3.tar.bz2
kernel_samsung_smdk4412-0d63081d418c73cc187c893069e0f24c4c6eecd3.zip
swsusp: provide users with a hint about the no_console_suspend option
Tell the user about the no_console_suspend option, so that we don't have to tell each bug reporter personally. [akpm@linux-foundation.org: clarify the text a little] Signed-off-by: Pavel Machek <pavel@suse.cz> Cc: "Rafael J. Wysocki" <rjw@sisk.pl> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'kernel')
-rw-r--r--kernel/printk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/printk.c b/kernel/printk.c
index 07ad9e7f7a6..3f7a2a94583 100644
--- a/kernel/printk.c
+++ b/kernel/printk.c
@@ -933,7 +933,7 @@ void suspend_console(void)
{
if (!console_suspend_enabled)
return;
- printk("Suspending console(s)\n");
+ printk("Suspending console(s) (use no_console_suspend to debug)\n");
acquire_console_sem();
console_suspended = 1;
}