aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/watchdog
diff options
context:
space:
mode:
authorSebastian Andrzej Siewior <bigeasy@linutronix.de>2019-07-04 17:38:01 +0200
committerWim Van Sebroeck <wim@linux-watchdog.org>2019-07-08 20:46:48 +0200
commit053bc5764bb0a84ef0b26a8e4ddd3e2f4b4f8215 (patch)
tree29ee28c1b4d41eb2e7beef846e7ac7b5058c60e6 /drivers/watchdog
parentwatchdog: atmel: atmel-sama5d4-wdt: Disable watchdog on system suspend (diff)
downloadlinux-dev-053bc5764bb0a84ef0b26a8e4ddd3e2f4b4f8215.tar.xz
linux-dev-053bc5764bb0a84ef0b26a8e4ddd3e2f4b4f8215.zip
watchdog: ie6xx_wdt: Use spinlock_t instead of struct spinlock
For spinlocks the type spinlock_t should be used instead of "struct spinlock". Use spinlock_t for spinlock's definition. Cc: Wim Van Sebroeck <wim@linux-watchdog.org> Cc: Guenter Roeck <linux@roeck-us.net> Cc: linux-watchdog@vger.kernel.org Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Reviewed-by: Guenter Roeck <linux@roeck-us.net> Signed-off-by: Guenter Roeck <linux@roeck-us.net> Signed-off-by: Wim Van Sebroeck <wim@linux-watchdog.org>
Diffstat (limited to 'drivers/watchdog')
-rw-r--r--drivers/watchdog/ie6xx_wdt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/watchdog/ie6xx_wdt.c b/drivers/watchdog/ie6xx_wdt.c
index c2de1ead0b56..8f28993fab8b 100644
--- a/drivers/watchdog/ie6xx_wdt.c
+++ b/drivers/watchdog/ie6xx_wdt.c
@@ -66,7 +66,7 @@ MODULE_PARM_DESC(resetmode,
static struct {
unsigned short sch_wdtba;
- struct spinlock unlock_sequence;
+ spinlock_t unlock_sequence;
#ifdef CONFIG_DEBUG_FS
struct dentry *debugfs;
#endif