hc
2024-05-14 bedbef8ad3e75a304af6361af235302bcc61d06b
kernel/drivers/watchdog/via_wdt.c
....@@ -1,8 +1,8 @@
1
+// SPDX-License-Identifier: GPL-2.0-only
12 /*
23 * VIA Chipset Watchdog Driver
34 *
45 * Copyright (C) 2011 Sigfox
5
- * License terms: GNU General Public License (GPL) version 2
66 * Author: Marc Vertes <marc.vertes@sigfox.com>
77 * Based on a preliminary version from Harald Welte <HaraldWelte@viatech.com>
88 * Timer code by Wim Van Sebroeck <wim@iguana.be>
....@@ -30,7 +30,7 @@
3030 #define VIA_WDT_CONF_MMIO 0x02 /* 1: enable watchdog MMIO */
3131
3232 /*
33
- * The MMIO region contains the watchog control register and the
33
+ * The MMIO region contains the watchdog control register and the
3434 * hardware timer counter.
3535 */
3636 #define VIA_WDT_MMIO_LEN 8 /* MMIO region length in bytes */
....@@ -82,7 +82,7 @@
8282 /*
8383 * Timer tick: the timer will make sure that the watchdog timer hardware
8484 * is being reset in time. The conditions to do this are:
85
- * 1) the watchog timer has been started and /dev/watchdog is open
85
+ * 1) the watchdog timer has been started and /dev/watchdog is open
8686 * and there is still time left before userspace should send the
8787 * next heartbeat/ping. (note: the internal heartbeat is much smaller
8888 * then the external/userspace heartbeat).