mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-04 20:25:20 +02:00
fd8f11bf77
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@13513 3c298f89-4303-0410-b956-a3cf2f4a3e73
21 lines
525 B
Diff
21 lines
525 B
Diff
--- a/drivers/watchdog/mtx-1_wdt.c
|
|
+++ b/drivers/watchdog/mtx-1_wdt.c
|
|
@@ -98,6 +98,8 @@ static void mtx1_wdt_reset(void)
|
|
|
|
static void mtx1_wdt_start(void)
|
|
{
|
|
+ unsigned long flags;
|
|
+
|
|
spin_lock_irqsave(&mtx1_wdt_device.lock, flags);
|
|
if (!mtx1_wdt_device.queue) {
|
|
mtx1_wdt_device.queue = 1;
|
|
@@ -110,6 +112,8 @@ static void mtx1_wdt_start(void)
|
|
|
|
static int mtx1_wdt_stop(void)
|
|
{
|
|
+ unsigned long flags;
|
|
+
|
|
spin_lock_irqsave(&mtx1_wdt_device.lock, flags);
|
|
if (mtx1_wdt_device.queue) {
|
|
mtx1_wdt_device.queue = 0;
|