[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20230922201025.64164-1-w1s2d5@gmail.com>
Date: Fri, 22 Sep 2023 22:10:25 +0200
From: Nikita Bune <w1s2d5@...il.com>
To: Wim Van Sebroeck <wim@...ux-watchdog.org>,
Guenter Roeck <linux@...ck-us.net>,
Kunihiko Hayashi <hayashi.kunihiko@...ionext.com>,
Masami Hiramatsu <mhiramat@...nel.org>
Cc: Nikita Bune <w1s2d5@...il.com>, linux-watchdog@...r.kernel.org,
linux-arm-kernel@...ts.infradead.org, linux-kernel@...r.kernel.org
Subject: [PATCH] drivers/watchdog: fix checkpatch error
Fix checkpatch ERROR: do not initialise statics to 0
Signed-off-by: Nikita Bune <w1s2d5@...il.com>
---
drivers/watchdog/uniphier_wdt.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/watchdog/uniphier_wdt.c b/drivers/watchdog/uniphier_wdt.c
index 8e9242c23022..7a080600d865 100644
--- a/drivers/watchdog/uniphier_wdt.c
+++ b/drivers/watchdog/uniphier_wdt.c
@@ -41,7 +41,7 @@
#define WDT_PERIOD_MIN 1
#define WDT_PERIOD_MAX 128
-static unsigned int timeout = 0;
+static unsigned int timeout;
static bool nowayout = WATCHDOG_NOWAYOUT;
struct uniphier_wdt_dev {
--
2.34.1
Powered by blists - more mailing lists