aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/watchdog
diff options
context:
space:
mode:
authorXiao Jiang <jgq516@gmail.com>2012-06-01 00:44:16 -0400
committerTony Lindgren <tony@atomide.com>2012-07-09 04:56:05 -0400
commite6ca04eaabbd5599b79c54db9a4dd8e9bfb424ec (patch)
tree42ae116b9924a3e8cb20a13dcca2ecbe73d7b8d7 /drivers/watchdog
parent6e152231995aa4ed5eafd87a6a8348563248f843 (diff)
watchdog: omap_wdt: add device tree support
Add device table for omap_wdt to support dt. Signed-off-by: Xiao Jiang <jgq516@gmail.com> Acked-by: Wim Van Sebroeck <wim@iguana.be> Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'drivers/watchdog')
-rw-r--r--drivers/watchdog/omap_wdt.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/watchdog/omap_wdt.c b/drivers/watchdog/omap_wdt.c
index 8285d65cd207..02ebfd5f0e65 100644
--- a/drivers/watchdog/omap_wdt.c
+++ b/drivers/watchdog/omap_wdt.c
@@ -430,6 +430,12 @@ static int omap_wdt_resume(struct platform_device *pdev)
430#define omap_wdt_resume NULL 430#define omap_wdt_resume NULL
431#endif 431#endif
432 432
433static const struct of_device_id omap_wdt_of_match[] = {
434 { .compatible = "ti,omap3-wdt", },
435 {},
436};
437MODULE_DEVICE_TABLE(of, omap_wdt_of_match);
438
433static struct platform_driver omap_wdt_driver = { 439static struct platform_driver omap_wdt_driver = {
434 .probe = omap_wdt_probe, 440 .probe = omap_wdt_probe,
435 .remove = __devexit_p(omap_wdt_remove), 441 .remove = __devexit_p(omap_wdt_remove),
@@ -439,6 +445,7 @@ static struct platform_driver omap_wdt_driver = {
439 .driver = { 445 .driver = {
440 .owner = THIS_MODULE, 446 .owner = THIS_MODULE,
441 .name = "omap_wdt", 447 .name = "omap_wdt",
448 .of_match_table = omap_wdt_of_match,
442 }, 449 },
443}; 450};
444 451