* warranty of any kind, whether express or implied.
*/
+#include <linux/of.h>
#include <linux/platform_device.h>
#include <linux/module.h>
#include <linux/watchdog.h>
return 0;
}
+#ifdef CONFIG_OF
+static const struct of_device_id ts72xx_wdt_of_ids[] = {
+ { .compatible = "technologic,ts72xx-wdt" },
+ {},
+};
+MODULE_DEVICE_TABLE(of, ts72xx_wdt_of_ids);
+#endif
+
static struct platform_driver ts72xx_wdt_driver = {
.probe = ts72xx_wdt_probe,
.driver = {
.name = "ts72xx-wdt",
+ .of_match_table = of_match_ptr(ts72xx_wdt_of_ids),
},
};