Merge tag 'for-3.8' of git://openrisc.net/~jonas/linux
[deliverable/linux.git] / include / linux / bcm47xx_wdt.h
1 #ifndef LINUX_BCM47XX_WDT_H_
2 #define LINUX_BCM47XX_WDT_H_
3
4 #include <linux/types.h>
5
6
7 struct bcm47xx_wdt {
8 u32 (*timer_set)(struct bcm47xx_wdt *, u32);
9 u32 (*timer_set_ms)(struct bcm47xx_wdt *, u32);
10 u32 max_timer_ms;
11
12 void *driver_data;
13 };
14
15 static inline void *bcm47xx_wdt_get_drvdata(struct bcm47xx_wdt *wdt)
16 {
17 return wdt->driver_data;
18 }
19 #endif /* LINUX_BCM47XX_WDT_H_ */
This page took 0.032018 seconds and 6 git commands to generate.