Commit b1785dfd authored by Masanari Iida's avatar Masanari Iida Committed by Wim Van Sebroeck

watchdog: Fix typo "unexpectdly"

Correct typo "unexpectdly" to "unexpectedly" in pnx4008_wdt.c
and stmp3xxx_wdt.c

Signed-off-by: Masanari Iida<standby24x7@gmail.com>
Signed-off-by: default avatarWim Van Sebroeck <wim@iguana.be>
parent 8a062ac6
...@@ -226,7 +226,7 @@ static long pnx4008_wdt_ioctl(struct file *file, unsigned int cmd, ...@@ -226,7 +226,7 @@ static long pnx4008_wdt_ioctl(struct file *file, unsigned int cmd,
static int pnx4008_wdt_release(struct inode *inode, struct file *file) static int pnx4008_wdt_release(struct inode *inode, struct file *file)
{ {
if (!test_bit(WDT_OK_TO_CLOSE, &wdt_status)) if (!test_bit(WDT_OK_TO_CLOSE, &wdt_status))
printk(KERN_WARNING "WATCHDOG: Device closed unexpectdly\n"); printk(KERN_WARNING "WATCHDOG: Device closed unexpectedly\n");
wdt_disable(); wdt_disable();
clk_disable(wdt_clk); clk_disable(wdt_clk);
......
...@@ -174,7 +174,7 @@ static int stmp3xxx_wdt_release(struct inode *inode, struct file *file) ...@@ -174,7 +174,7 @@ static int stmp3xxx_wdt_release(struct inode *inode, struct file *file)
if (!nowayout) { if (!nowayout) {
if (!test_bit(WDT_OK_TO_CLOSE, &wdt_status)) { if (!test_bit(WDT_OK_TO_CLOSE, &wdt_status)) {
wdt_ping(); wdt_ping();
pr_debug("%s: Device closed unexpectdly\n", __func__); pr_debug("%s: Device closed unexpectedly\n", __func__);
ret = -EINVAL; ret = -EINVAL;
} else { } else {
wdt_disable(); wdt_disable();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment