diff options
author | Xiao Jiang <jgq516@gmail.com> | 2012-06-01 00:44:16 -0400 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2012-07-09 04:56:05 -0400 |
commit | e6ca04eaabbd5599b79c54db9a4dd8e9bfb424ec (patch) | |
tree | 42ae116b9924a3e8cb20a13dcca2ecbe73d7b8d7 /drivers/watchdog | |
parent | 6e152231995aa4ed5eafd87a6a8348563248f843 (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.c | 7 |
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 | ||
433 | static const struct of_device_id omap_wdt_of_match[] = { | ||
434 | { .compatible = "ti,omap3-wdt", }, | ||
435 | {}, | ||
436 | }; | ||
437 | MODULE_DEVICE_TABLE(of, omap_wdt_of_match); | ||
438 | |||
433 | static struct platform_driver omap_wdt_driver = { | 439 | static 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 | ||