diff options
author | Wolfram Sang <w.sang@pengutronix.de> | 2011-09-27 16:21:37 -0400 |
---|---|---|
committer | Wim Van Sebroeck <wim@iguana.be> | 2013-03-01 06:40:36 -0500 |
commit | 1a71fb84fda651105e1e194c2d3a3a13a38210a9 (patch) | |
tree | 812379bf5a5f6ffaddd129fd7858e3d2adb66dab /include | |
parent | 3d3a6d18abc66ba38e554fd5cb5991dfa805cd23 (diff) |
rtc: stmp3xxx: add wdt-accessor function
This RTC also includes a watchdog timer. Provide an accessor function
for setting the watchdog timeout value which will be picked up by a
watchdog driver. Also register the platform_device for the watchdog here
to get the boot-time dependencies right.
Signed-off-by: Wolfram Sang <w.sang@pengutronix.de>
Acked-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/stmp3xxx_rtc_wdt.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/include/linux/stmp3xxx_rtc_wdt.h b/include/linux/stmp3xxx_rtc_wdt.h new file mode 100644 index 000000000000..1dd12c96231b --- /dev/null +++ b/include/linux/stmp3xxx_rtc_wdt.h | |||
@@ -0,0 +1,15 @@ | |||
1 | /* | ||
2 | * stmp3xxx_rtc_wdt.h | ||
3 | * | ||
4 | * Copyright (C) 2011 Wolfram Sang, Pengutronix e.K. | ||
5 | * | ||
6 | * This file is released under the GPLv2. | ||
7 | */ | ||
8 | #ifndef __LINUX_STMP3XXX_RTC_WDT_H | ||
9 | #define __LINUX_STMP3XXX_RTC_WDT_H | ||
10 | |||
11 | struct stmp3xxx_wdt_pdata { | ||
12 | void (*wdt_set_timeout)(struct device *dev, u32 timeout); | ||
13 | }; | ||
14 | |||
15 | #endif /* __LINUX_STMP3XXX_RTC_WDT_H */ | ||