-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 114287 b: refs/heads/master c: 213f326 h: refs/heads/master i: 114285: 3194a6b 114283: 2f02d7b 114279: cca0be6 114271: 8e20a59 v: v3
- Loading branch information
Mark Brown
authored and
Liam Girdwood
committed
Oct 13, 2008
1 parent
2573a59
commit a7c5539
Showing
2 changed files
with
23 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 64a91ce93499dad945c4725d39b52f734d31b742 | ||
refs/heads/master: 213f326810b6852bc54f38fd8bb71793f70f2c7a |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
/* | ||
* wdt.h -- Watchdog Driver for Wolfson WM8350 PMIC | ||
* | ||
* Copyright 2007 Wolfson Microelectronics PLC | ||
* | ||
* This program is free software; you can redistribute it and/or modify it | ||
* under the terms of the GNU General Public License as published by the | ||
* Free Software Foundation; either version 2 of the License, or (at your | ||
* option) any later version. | ||
*/ | ||
|
||
#ifndef __LINUX_MFD_WM8350_WDT_H_ | ||
#define __LINUX_MFD_WM8350_WDT_H_ | ||
|
||
#define WM8350_WDOG_HIB_MODE 0x0080 | ||
#define WM8350_WDOG_DEBUG 0x0040 | ||
#define WM8350_WDOG_MODE_MASK 0x0030 | ||
#define WM8350_WDOG_TO_MASK 0x0007 | ||
|
||
#define WM8350_IRQ_SYS_WDOG_TO 24 | ||
|
||
#endif |