rtc: m48t86: add DT support for m48t86
authorNikita Shubin <nikita.shubin@maquefel.me>
Mon, 21 Nov 2022 09:50:49 +0000 (12:50 +0300)
committerNikita Shubin <nikita.shubin@maquefel.me>
Wed, 31 May 2023 10:51:51 +0000 (13:51 +0300)
- get regs from device tree

Signed-off-by: Nikita Shubin <nikita.shubin@maquefel.me>
drivers/rtc/rtc-m48t86.c

index 481c9525b1ddbfdf709165d87e911f9cfa34b295..b114796d43266d49dbf8cd2dde6e97aa3411fee5 100644 (file)
@@ -15,6 +15,7 @@
 #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
@@ -269,9 +270,16 @@ static int m48t86_rtc_probe(struct platform_device *pdev)
        return 0;
 }
 
+static const struct of_device_id m48t86_rtc_of_ids[] = {
+       { .compatible = "st,m48t86" },
+       { /* sentinel */ }
+};
+MODULE_DEVICE_TABLE(of, m48t86_rtc_of_ids);
+
 static struct platform_driver m48t86_rtc_platform_driver = {
        .driver         = {
                .name   = "rtc-m48t86",
+               .of_match_table = m48t86_rtc_of_ids,
        },
        .probe          = m48t86_rtc_probe,
 };