From: Nikita Shubin Date: Sun, 14 Mar 2021 14:33:31 +0000 (+0300) Subject: watchdog: ep93xx: add DT support for Cirrus EP93xx X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=75c499d74da7ad2e680061878c9d5c18e2003352;p=linux.git watchdog: ep93xx: add DT support for Cirrus EP93xx - Find register range from the device tree. Signed-off-by: Nikita Shubin --- diff --git a/drivers/watchdog/ep93xx_wdt.c b/drivers/watchdog/ep93xx_wdt.c index 38e26f160b9a5..e8b13901712ca 100644 --- a/drivers/watchdog/ep93xx_wdt.c +++ b/drivers/watchdog/ep93xx_wdt.c @@ -21,6 +21,7 @@ * daemon dies. */ +#include #include #include #include @@ -130,9 +131,18 @@ static int ep93xx_wdt_probe(struct platform_device *pdev) return 0; } +#ifdef CONFIG_OF +static const struct of_device_id ep93xx_wdt_of_ids[] = { + { .compatible = "cirrus,ep93xx-wdt" }, + {}, +}; +MODULE_DEVICE_TABLE(of, ep93xx_wdt_of_ids); +#endif + static struct platform_driver ep93xx_wdt_driver = { .driver = { .name = "ep93xx-wdt", + .of_match_table = of_match_ptr(ep93xx_wdt_of_ids), }, .probe = ep93xx_wdt_probe, };