Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 189977
b: refs/heads/master
c: b1183e0
h: refs/heads/master
i:
  189975: f4abb19
v: v3
  • Loading branch information
Marc Zyngier authored and Wim Van Sebroeck committed Apr 16, 2010
1 parent ea08d09 commit d827dc0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 0fb06571bbb5c72b4663c20f721323260ea802bf
refs/heads/master: b1183e064a3f95d27351b2d2c811b50bf4d770a4
7 changes: 6 additions & 1 deletion trunk/drivers/watchdog/max63xx_wdt.c
Original file line number Diff line number Diff line change
Expand Up @@ -154,9 +154,14 @@ static void max63xx_wdt_enable(struct max63xx_timeout *entry)

static void max63xx_wdt_disable(void)
{
u8 val;

spin_lock(&io_lock);

__raw_writeb(3, wdt_base);
val = __raw_readb(wdt_base);
val &= ~MAX6369_WDSET;
val |= 3;
__raw_writeb(val, wdt_base);

spin_unlock(&io_lock);

Expand Down

0 comments on commit d827dc0

Please sign in to comment.