diff options
author | Samuel Tardieu <sam@rfc1149.net> | 2006-09-07 05:57:00 -0400 |
---|---|---|
committer | Wim Van Sebroeck <wim@iguana.be> | 2006-10-04 16:46:22 -0400 |
commit | 3fdee8db010d5cbf890ec49332ac4946f3f63720 (patch) | |
tree | b76c744d45f49592b570ead08f9ed5fef42e074e /drivers/char/watchdog/w83697hf_wdt.c | |
parent | b7b9868ba6f528d60e5869b4a6aad1fe49838b03 (diff) |
[WATCHDOG] w83697hf/hg WDT driver - patch 16
This is patch 16 in the series of patches that converts
Marcus Junker's w83697hf watchdog driver to Samuel Tardieau's
w83697hf/hg watchdog driver.
This patch contains following changes:
- Add copyright notice for Samuel Tardieu also.
This is the last patch in this series.
The original description for Samuel's driver was:
driver for the Winbond W83697HF/W83697HG watchdog timer
The Winbond SuperIO W83697HF/HG includes a watchdog that can count from
1 to 255 seconds (or minutes). This drivers allows the seconds mode to
be used. It exposes a standard /dev/watchdog interface. This chip is
currently being used on some motherboards designed by VIA.
By default, the module looks for a chip at I/O port 0x2e. The chip can
be configured to be at 0x4e on some motherboards, the address can be
chosen using the wdt_io module parameter. Using 0 will try to autodetect
the address.
Signed-off-by: Samuel Tardieu <sam@rfc1149.net>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Diffstat (limited to 'drivers/char/watchdog/w83697hf_wdt.c')
-rw-r--r-- | drivers/char/watchdog/w83697hf_wdt.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/char/watchdog/w83697hf_wdt.c b/drivers/char/watchdog/w83697hf_wdt.c index 78b6540e8747..21052de8a0c6 100644 --- a/drivers/char/watchdog/w83697hf_wdt.c +++ b/drivers/char/watchdog/w83697hf_wdt.c | |||
@@ -1,6 +1,7 @@ | |||
1 | /* | 1 | /* |
2 | * w83697hf/hg WDT driver | 2 | * w83697hf/hg WDT driver |
3 | * | 3 | * |
4 | * (c) Copyright 2006 Samuel Tardieu <sam@rfc1149.net> | ||
4 | * (c) Copyright 2006 Marcus Junker <junker@anduras.de> | 5 | * (c) Copyright 2006 Marcus Junker <junker@anduras.de> |
5 | * | 6 | * |
6 | * Based on w83627hf_wdt.c which is based on advantechwdt.c | 7 | * Based on w83627hf_wdt.c which is based on advantechwdt.c |
@@ -442,6 +443,6 @@ module_init(wdt_init); | |||
442 | module_exit(wdt_exit); | 443 | module_exit(wdt_exit); |
443 | 444 | ||
444 | MODULE_LICENSE("GPL"); | 445 | MODULE_LICENSE("GPL"); |
445 | MODULE_AUTHOR("Marcus Junker <junker@anduras.de>"); | 446 | MODULE_AUTHOR("Marcus Junker <junker@anduras.de>, Samuel Tardieu <sam@rfc1149.net>"); |
446 | MODULE_DESCRIPTION("w83697hf/hg WDT driver"); | 447 | MODULE_DESCRIPTION("w83697hf/hg WDT driver"); |
447 | MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR); | 448 | MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR); |