#include <linux/platform_device.h>
#include <linux/bcd.h>
#include <linux/io.h>
+#include <linux/of.h>
#define M48T86_SEC 0x00
#define M48T86_SECALRM 0x01
return 0;
}
+#ifdef CONFIG_OF
+static const struct of_device_id m48t86_rtc_of_ids[] = {
+ { .compatible = "dallas,rtc-m48t86" },
+ { /* end of table */ },
+};
+MODULE_DEVICE_TABLE(of, m48t86_rtc_of_ids);
+#endif
+
static struct platform_driver m48t86_rtc_platform_driver = {
.driver = {
.name = "rtc-m48t86",
+ .of_match_table = of_match_ptr(m48t86_rtc_of_ids),
},
.probe = m48t86_rtc_probe,
};