The patch titled
it8712f_wdt.c: add support for the IT8716F watchdog
has been removed from the -mm tree. Its filename was
it8712f_wdtc-add-support-for-the-it8716f-watchdog.patch
This patch was dropped because it was withdrawn
------------------------------------------------------
Subject: it8712f_wdt.c: add support for the IT8716F watchdog
From: Mike Lampard <[EMAIL PROTECTED]>
Add support for the IT8716F watchdog, which appears to be essentially the same
as the IT8712F in all but name.
Signed-off-by: Mike Lampard <[EMAIL PROTECTED]>
Cc: Wim Van Sebroeck <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
drivers/watchdog/it8712f_wdt.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff -puN
drivers/watchdog/it8712f_wdt.c~it8712f_wdtc-add-support-for-the-it8716f-watchdog
drivers/watchdog/it8712f_wdt.c
---
a/drivers/watchdog/it8712f_wdt.c~it8712f_wdtc-add-support-for-the-it8716f-watchdog
+++ a/drivers/watchdog/it8712f_wdt.c
@@ -36,7 +36,7 @@
#define NAME "it8712f_wdt"
MODULE_AUTHOR("Jorge Boncompte - DTI2 <[EMAIL PROTECTED]>");
-MODULE_DESCRIPTION("IT8712F Watchdog Driver");
+MODULE_DESCRIPTION("IT8712F/IT8716F Watchdog Driver");
MODULE_LICENSE("GPL");
MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);
@@ -65,6 +65,7 @@ static unsigned short address;
#define BASE_REG 0x60 /* LDN Register: Base address */
#define IT8712F_DEVID 0x8712
+#define IT8716F_DEVID 0x8716
#define LDN_GPIO 0x07 /* GPIO and Watch Dog Timer */
#define LDN_GAME 0x09 /* Game Port */
@@ -319,7 +320,7 @@ it8712f_wdt_find(unsigned short *address
superio_enter();
chip_type = superio_inw(DEVID);
- if (chip_type != IT8712F_DEVID)
+ if (chip_type != IT8712F_DEVID && chip_type != IT8716F_DEVID)
goto exit;
superio_select(LDN_GAME);
_
Patches currently in -mm which might be from [EMAIL PROTECTED] are
it8712f_wdtc-add-support-for-the-it8716f-watchdog.patch
-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html