diff options
author | Aaron Sierra <asierra@xes-inc.com> | 2012-04-20 15:14:11 -0400 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2012-05-09 11:20:09 -0400 |
commit | 887c8ec7219fc8eba78bb8f44a74c660934e9b98 (patch) | |
tree | c7f5b2d24c984a7ca57120dd057cd3cd2f6efee2 /drivers/watchdog/iTCO_vendor.h | |
parent | 16c5c023aac86228e3e94c4bf6d19708ea861a05 (diff) |
watchdog: Convert iTCO_wdt driver to mfd model
This patch converts the iTCO_wdt driver to use the multi-function device
driver model. It uses resources discovered by the lpc_ich driver, so that
it no longer does its own PCI scanning.
Signed-off-by: Aaron Sierra <asierra@xes-inc.com>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'drivers/watchdog/iTCO_vendor.h')
-rw-r--r-- | drivers/watchdog/iTCO_vendor.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/watchdog/iTCO_vendor.h b/drivers/watchdog/iTCO_vendor.h index 9e27e6422f66..3c57b45537a2 100644 --- a/drivers/watchdog/iTCO_vendor.h +++ b/drivers/watchdog/iTCO_vendor.h | |||
@@ -1,8 +1,8 @@ | |||
1 | /* iTCO Vendor Specific Support hooks */ | 1 | /* iTCO Vendor Specific Support hooks */ |
2 | #ifdef CONFIG_ITCO_VENDOR_SUPPORT | 2 | #ifdef CONFIG_ITCO_VENDOR_SUPPORT |
3 | extern void iTCO_vendor_pre_start(unsigned long, unsigned int); | 3 | extern void iTCO_vendor_pre_start(struct resource *, unsigned int); |
4 | extern void iTCO_vendor_pre_stop(unsigned long); | 4 | extern void iTCO_vendor_pre_stop(struct resource *); |
5 | extern void iTCO_vendor_pre_keepalive(unsigned long, unsigned int); | 5 | extern void iTCO_vendor_pre_keepalive(struct resource *, unsigned int); |
6 | extern void iTCO_vendor_pre_set_heartbeat(unsigned int); | 6 | extern void iTCO_vendor_pre_set_heartbeat(unsigned int); |
7 | extern int iTCO_vendor_check_noreboot_on(void); | 7 | extern int iTCO_vendor_check_noreboot_on(void); |
8 | #else | 8 | #else |