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>
This commit is contained in:
parent
d9eedaf329
commit
e6849374f3
|
@ -317,8 +317,6 @@ void lpc23xx_restart(char mode, const char *cmd)
|
||||||
switch (mode) {
|
switch (mode) {
|
||||||
case 's':
|
case 's':
|
||||||
case 'h':
|
case 'h':
|
||||||
printk(KERN_CRIT "RESET: Rebooting system\n");
|
|
||||||
|
|
||||||
lpc32xx_watchdog_reset();
|
lpc32xx_watchdog_reset();
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
|
@ -1897,7 +1897,6 @@ void u300_restart(char mode, const char *cmd)
|
||||||
switch (mode) {
|
switch (mode) {
|
||||||
case 's':
|
case 's':
|
||||||
case 'h':
|
case 'h':
|
||||||
printk(KERN_CRIT "RESET: shutting down/rebooting system\n");
|
|
||||||
#ifdef CONFIG_COH901327_WATCHDOG
|
#ifdef CONFIG_COH901327_WATCHDOG
|
||||||
coh901327_watchdog_reset();
|
coh901327_watchdog_reset();
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue