summaryrefslogtreecommitdiffstats
path: root/drivers/rtc
diff options
context:
space:
mode:
authorLinus Walleij <linus.walleij@linaro.org>2017-01-22 13:19:50 +0100
committerAlexandre Belloni <alexandre.belloni@free-electrons.com>2017-01-24 18:45:05 +0100
commitbc7d8ebf37e725ec028e7699e6b497c96678d63a (patch)
tree1bfe600260eef5a29e50fab9c351e9f7dcff05a2 /drivers/rtc
parent1d70ba3bfb30cf8d151f18f5bf7d7a218ecede57 (diff)
downloadop-kernel-dev-bc7d8ebf37e725ec028e7699e6b497c96678d63a.zip
op-kernel-dev-bc7d8ebf37e725ec028e7699e6b497c96678d63a.tar.gz
rtc: gemini: Add device tree probing
This adds bindings and simple probing for the Cortina Systems Gemini SoC RTC. Cc: Janos Laube <janos.dev@gmail.com> Cc: Paulius Zaleckas <paulius.zaleckas@gmail.com> Cc: Hans Ulli Kroll <ulli.kroll@googlemail.com> Cc: Florian Fainelli <f.fainelli@gmail.com> Cc: devicetree@vger.kernel.org Signed-off-by: Linus Walleij <linus.walleij@linaro.org> Acked-by: Rob Herring <robh@kernel.org> Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Diffstat (limited to 'drivers/rtc')
-rw-r--r--drivers/rtc/rtc-gemini.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/rtc/rtc-gemini.c b/drivers/rtc/rtc-gemini.c
index 688debc..ccf0dba 100644
--- a/drivers/rtc/rtc-gemini.c
+++ b/drivers/rtc/rtc-gemini.c
@@ -159,9 +159,16 @@ static int gemini_rtc_remove(struct platform_device *pdev)
return 0;
}
+static const struct of_device_id gemini_rtc_dt_match[] = {
+ { .compatible = "cortina,gemini-rtc" },
+ { }
+};
+MODULE_DEVICE_TABLE(of, gemini_rtc_dt_match);
+
static struct platform_driver gemini_rtc_driver = {
.driver = {
.name = DRV_NAME,
+ .of_match_table = gemini_rtc_dt_match,
},
.probe = gemini_rtc_probe,
.remove = gemini_rtc_remove,
OpenPOWER on IntegriCloud