mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-01 02:21:16 +00:00
887c8ec721
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>
15 lines
680 B
C
15 lines
680 B
C
/* iTCO Vendor Specific Support hooks */
|
|
#ifdef CONFIG_ITCO_VENDOR_SUPPORT
|
|
extern void iTCO_vendor_pre_start(struct resource *, unsigned int);
|
|
extern void iTCO_vendor_pre_stop(struct resource *);
|
|
extern void iTCO_vendor_pre_keepalive(struct resource *, unsigned int);
|
|
extern void iTCO_vendor_pre_set_heartbeat(unsigned int);
|
|
extern int iTCO_vendor_check_noreboot_on(void);
|
|
#else
|
|
#define iTCO_vendor_pre_start(acpibase, heartbeat) {}
|
|
#define iTCO_vendor_pre_stop(acpibase) {}
|
|
#define iTCO_vendor_pre_keepalive(acpibase, heartbeat) {}
|
|
#define iTCO_vendor_pre_set_heartbeat(heartbeat) {}
|
|
#define iTCO_vendor_check_noreboot_on() 1
|
|
/* 1=check noreboot; 0=don't check */
|
|
#endif
|