1
0
Fork 0

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>
hifive-unleashed-5.1
Russell King 2011-11-05 12:18:20 +00:00
parent d9eedaf329
commit e6849374f3
2 changed files with 0 additions and 3 deletions

View File

@ -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;

View File

@ -1897,7 +1897,6 @@ void u300_restart(char mode, const char *cmd)
switch (mode) {
case 's':
case 'h':
printk(KERN_CRIT "RESET: shutting down/rebooting system\n");
#ifdef CONFIG_COH901327_WATCHDOG
coh901327_watchdog_reset();
#endif