Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 341999
b: refs/heads/master
c: bc245cc
h: refs/heads/master
i:
  341997: 86114b4
  341995: 2de9ccc
  341991: 7d4b8b8
  341983: bb058b9
v: v3
  • Loading branch information
Hauke Mehrtens authored and John W. Linville committed Dec 6, 2012
1 parent 9e94fbd commit e0b8e32
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 8df0f1e5cbd4ff1e2059a1e11bd89b35aa5ed004
refs/heads/master: bc245cc36c5687dd3fbf6d4a1b3c13d41f9cb189
19 changes: 19 additions & 0 deletions trunk/include/linux/bcm47xx_wdt.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#ifndef LINUX_BCM47XX_WDT_H_
#define LINUX_BCM47XX_WDT_H_

#include <linux/types.h>


struct bcm47xx_wdt {
u32 (*timer_set)(struct bcm47xx_wdt *, u32);
u32 (*timer_set_ms)(struct bcm47xx_wdt *, u32);
u32 max_timer_ms;

void *driver_data;
};

static inline void *bcm47xx_wdt_get_drvdata(struct bcm47xx_wdt *wdt)
{
return wdt->driver_data;
}
#endif /* LINUX_BCM47XX_WDT_H_ */

0 comments on commit e0b8e32

Please sign in to comment.