hc
2024-02-20 102a0743326a03cd1a1202ceda21e175b7d3575c
kernel/arch/sh/kernel/nmi_debug.c
....@@ -1,9 +1,6 @@
1
+// SPDX-License-Identifier: GPL-2.0
12 /*
23 * Copyright (C) 2007 Atmel Corporation
3
- *
4
- * This program is free software; you can redistribute it and/or modify
5
- * it under the terms of the GNU General Public License version 2 as
6
- * published by the Free Software Foundation.
74 */
85 #include <linux/delay.h>
96 #include <linux/kdebug.h>
....@@ -52,7 +49,7 @@
5249 register_die_notifier(&nmi_debug_nb);
5350
5451 if (*str != '=')
55
- return 0;
52
+ return 1;
5653
5754 for (p = str + 1; *p; p = sep + 1) {
5855 sep = strchr(p, ',');
....@@ -73,6 +70,6 @@
7370 break;
7471 }
7572
76
- return 0;
73
+ return 1;
7774 }
7875 __setup("nmi_debug", nmi_debug_setup);