diff options
author | Hauke Mehrtens <hauke@hauke-m.de> | 2013-01-24 12:13:34 -0500 |
---|---|---|
committer | Wim Van Sebroeck <wim@iguana.be> | 2013-03-01 06:47:16 -0500 |
commit | f82dedf812ecdf0c19c6c240e85a4a487ab62016 (patch) | |
tree | 656ae38bd44696b7c7b4ea4d46d5d323cb418fcb /include | |
parent | 5434a04db905bb0af281cdb758d1357fbecd0fe8 (diff) |
watchdog: bcm47xx_wdt.c: use platform device
Instead of accessing the function to set the watchdog timer directly,
register a platform driver the platform could register to use this
watchdog driver.
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/bcm47xx_wdt.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/linux/bcm47xx_wdt.h b/include/linux/bcm47xx_wdt.h index e5dfc256485b..b708786d4cbf 100644 --- a/include/linux/bcm47xx_wdt.h +++ b/include/linux/bcm47xx_wdt.h | |||
@@ -1,7 +1,10 @@ | |||
1 | #ifndef LINUX_BCM47XX_WDT_H_ | 1 | #ifndef LINUX_BCM47XX_WDT_H_ |
2 | #define LINUX_BCM47XX_WDT_H_ | 2 | #define LINUX_BCM47XX_WDT_H_ |
3 | 3 | ||
4 | #include <linux/notifier.h> | ||
5 | #include <linux/timer.h> | ||
4 | #include <linux/types.h> | 6 | #include <linux/types.h> |
7 | #include <linux/watchdog.h> | ||
5 | 8 | ||
6 | 9 | ||
7 | struct bcm47xx_wdt { | 10 | struct bcm47xx_wdt { |
@@ -10,6 +13,12 @@ struct bcm47xx_wdt { | |||
10 | u32 max_timer_ms; | 13 | u32 max_timer_ms; |
11 | 14 | ||
12 | void *driver_data; | 15 | void *driver_data; |
16 | |||
17 | struct watchdog_device wdd; | ||
18 | struct notifier_block notifier; | ||
19 | |||
20 | struct timer_list soft_timer; | ||
21 | atomic_t soft_ticks; | ||
13 | }; | 22 | }; |
14 | 23 | ||
15 | static inline void *bcm47xx_wdt_get_drvdata(struct bcm47xx_wdt *wdt) | 24 | static inline void *bcm47xx_wdt_get_drvdata(struct bcm47xx_wdt *wdt) |