diff options
author | Russell King <rmk+kernel@arm.linux.org.uk> | 2011-11-05 16:18:20 +0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2012-01-05 16:57:21 +0400 |
commit | e6849374f3fcec5a51ab6df40ae4d8034ba1c5e0 (patch) | |
tree | 18d60c971098d115b5969760489d915351a2b72c /arch/arm/mach-lpc32xx/common.c | |
parent | d9eedaf329a28a20a4b0f18fed2beb40be10a406 (diff) | |
download | linux-e6849374f3fcec5a51ab6df40ae4d8034ba1c5e0.tar.xz |
ARM: restart: lpc32xx & u300: remove unnecessary printk
Remove the:
KERN_CRIT "RESET: Rebooting system\n" (lpc32xx)
KERN_CRIT "RESET: shutting down/rebooting system\n" (u300)
printk from the restart handler; we already print such a message from
kernel_restart() in kernel/sys.c:
KERN_EMERG "Restarting system.\n"
so this is unnecessary.
Acked-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-lpc32xx/common.c')
-rw-r--r-- | arch/arm/mach-lpc32xx/common.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/arm/mach-lpc32xx/common.c b/arch/arm/mach-lpc32xx/common.c index b049fd1eb8e1..369b152896cd 100644 --- a/arch/arm/mach-lpc32xx/common.c +++ b/arch/arm/mach-lpc32xx/common.c @@ -317,8 +317,6 @@ void lpc23xx_restart(char mode, const char *cmd) switch (mode) { case 's': case 'h': - printk(KERN_CRIT "RESET: Rebooting system\n"); - lpc32xx_watchdog_reset(); break; |