Commit 4a23e2bf authored by Wolfram Sang's avatar Wolfram Sang Committed by Wim Van Sebroeck
Browse files

watchdog: softdog: improve coding style

parent 61a21274
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -57,9 +57,9 @@ MODULE_PARM_DESC(soft_panic,
static void softdog_fire(unsigned long data)
{
	module_put(THIS_MODULE);
	if (soft_noboot)
	if (soft_noboot) {
		pr_crit("Triggered - Reboot ignored\n");
	else if (soft_panic) {
	} else if (soft_panic) {
		pr_crit("Initiating panic\n");
		panic("Software Watchdog Timer expired");
	} else {