diff options
author | Jiangshan Yi <[email protected]> | 2022-10-09 16:39:44 +0800 |
---|---|---|
committer | Wim Van Sebroeck <[email protected]> | 2022-10-19 19:49:46 +0200 |
commit | 097a4a1612389c31d2c4b95dfa816b91212d7f54 (patch) | |
tree | c49676d94537eb40103cede8c31cff1ede853e15 | |
parent | e25b091bed4946078c0998e4be77bc56824a9adf (diff) |
watchdog: sp805_wdt: fix spelling typo in comment
Fix spelling typo in comment.
Reported-by: k2ci <[email protected]>
Signed-off-by: Jiangshan Yi <[email protected]>
Reviewed-by: Guenter Roeck <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Guenter Roeck <[email protected]>
Signed-off-by: Wim Van Sebroeck <[email protected]>
-rw-r--r-- | drivers/watchdog/sp805_wdt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/watchdog/sp805_wdt.c b/drivers/watchdog/sp805_wdt.c index 78ba36689eec..2756ed54ca3d 100644 --- a/drivers/watchdog/sp805_wdt.c +++ b/drivers/watchdog/sp805_wdt.c @@ -88,7 +88,7 @@ static bool wdt_is_running(struct watchdog_device *wdd) return (wdtcontrol & ENABLE_MASK) == ENABLE_MASK; } -/* This routine finds load value that will reset system in required timout */ +/* This routine finds load value that will reset system in required timeout */ static int wdt_setload(struct watchdog_device *wdd, unsigned int timeout) { struct sp805_wdt *wdt = watchdog_get_drvdata(wdd); |