summaryrefslogtreecommitdiff
path: root/kernel/panic.c
diff options
context:
space:
mode:
authorBrian Norris <computersforpeace@gmail.com>2017-02-08 15:00:24 -0800
committerBrian Norris <computersforpeace@gmail.com>2017-02-08 15:00:24 -0800
commit9c8d7ff32a0aa001ac8506180e1662ecdf927f32 (patch)
tree65f44bde4c200c7485479d59df550815371c0ab0 /kernel/panic.c
parent5d708ecc6c7718c22bcacabff0fbb32ecd19ad6b (diff)
parenta4077ce5871304f8a78f80b74b18b6052a410f1a (diff)
Merge tag 'nand/for-4.11' of github.com:linux-nand/linux
From Boris: """ This pull request contains minor fixes/improvements on existing drivers: - sunxi: avoid busy-waiting for NAND events - ifc: fix ECC handling on IFC v1.0 - OX820: add explicit dependency on ARCH_OXNAS in Kconfig - core: add a new manufacture ID and fix a kernel-doc warning - fsmc: kill pdata support - lpc32xx_slc: remove unneeded NULL check """ Conflicts: include/linux/mtd/nand.h [Brian: trivial conflict in the comment section]
Diffstat (limited to 'kernel/panic.c')
-rw-r--r--kernel/panic.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/panic.c b/kernel/panic.c
index 901c4fb46002..08aa88dde7de 100644
--- a/kernel/panic.c
+++ b/kernel/panic.c
@@ -249,7 +249,7 @@ void panic(const char *fmt, ...)
* Delay timeout seconds before rebooting the machine.
* We can't use the "normal" timers since we just panicked.
*/
- pr_emerg("Rebooting in %d seconds..", panic_timeout);
+ pr_emerg("Rebooting in %d seconds..\n", panic_timeout);
for (i = 0; i < panic_timeout * 1000; i += PANIC_TIMER_STEP) {
touch_nmi_watchdog();