Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 305878
b: refs/heads/master
c: 3ba3774
h: refs/heads/master
v: v3
  • Loading branch information
Roland Stigge authored and Wim Van Sebroeck committed May 23, 2012
1 parent 7a174bb commit e1c5270
Show file tree
Hide file tree
Showing 3 changed files with 24 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: ae21cc20a604b45e97d0cdbce7e9302ce7dd7d5c
refs/heads/master: 3ba3774b8c433fe9e91158d65cf2324ff0c5a15d
13 changes: 13 additions & 0 deletions trunk/Documentation/devicetree/bindings/watchdog/pnx4008-wdt.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
* NXP PNX watchdog timer

Required properties:
- compatible: must be "nxp,pnx4008-wdt"
- reg: physical base address of the controller and length of memory mapped
region.

Example:

watchdog@4003C000 {
compatible = "nxp,pnx4008-wdt";
reg = <0x4003C000 0x1000>;
};
10 changes: 10 additions & 0 deletions trunk/drivers/watchdog/pnx4008_wdt.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
#include <linux/io.h>
#include <linux/slab.h>
#include <linux/err.h>
#include <linux/of.h>
#include <mach/hardware.h>

/* WatchDog Timer - Chapter 23 Page 207 */
Expand Down Expand Up @@ -201,10 +202,19 @@ static int __devexit pnx4008_wdt_remove(struct platform_device *pdev)
return 0;
}

#ifdef CONFIG_OF
static const struct of_device_id pnx4008_wdt_match[] = {
{ .compatible = "nxp,pnx4008-wdt" },
{ }
};
MODULE_DEVICE_TABLE(of, pnx4008_wdt_match);
#endif

static struct platform_driver platform_wdt_driver = {
.driver = {
.name = "pnx4008-watchdog",
.owner = THIS_MODULE,
.of_match_table = of_match_ptr(pnx4008_wdt_match),
},
.probe = pnx4008_wdt_probe,
.remove = __devexit_p(pnx4008_wdt_remove),
Expand Down

0 comments on commit e1c5270

Please sign in to comment.