summaryrefslogtreecommitdiffstats
path: root/drivers/rtc
diff options
context:
space:
mode:
authorJavier Martinez Canillas <javier@osg.samsung.com>2017-03-03 09:29:12 -0500
committerAlexandre Belloni <alexandre.belloni@free-electrons.com>2017-03-08 19:29:14 -0500
commit740ad8f43c78a8dc3ec73515b7b847ca0edac781 (patch)
treeaae3af0d7fb7b2814c9255b835dc31cd1a29dd03 /drivers/rtc
parentc1ae3cfa0e89fa1a7ecc4c99031f5e9ae99d9201 (diff)
rtc: rv8803: Add OF device ID table
The driver doesn't have a struct of_device_id table but supported devices are registered via Device Trees. This is working on the assumption that a I2C device registered via OF will always match a legacy I2C device ID and that the MODALIAS reported will always be of the form i2c:<device>. But this could change in the future so the correct approach is to have an OF device ID table if the devices are registered via OF. Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Diffstat (limited to 'drivers/rtc')
-rw-r--r--drivers/rtc/rtc-rv8803.c21
1 files changed, 20 insertions, 1 deletions
diff --git a/drivers/rtc/rtc-rv8803.c b/drivers/rtc/rtc-rv8803.c
index f9277e536f7e..9ad97ab29866 100644
--- a/drivers/rtc/rtc-rv8803.c
+++ b/drivers/rtc/rtc-rv8803.c
@@ -18,6 +18,7 @@
18#include <linux/interrupt.h> 18#include <linux/interrupt.h>
19#include <linux/kernel.h> 19#include <linux/kernel.h>
20#include <linux/module.h> 20#include <linux/module.h>
21#include <linux/of_device.h>
21#include <linux/rtc.h> 22#include <linux/rtc.h>
22 23
23#define RV8803_I2C_TRY_COUNT 4 24#define RV8803_I2C_TRY_COUNT 4
@@ -556,7 +557,11 @@ static int rv8803_probe(struct i2c_client *client,
556 557
557 mutex_init(&rv8803->flags_lock); 558 mutex_init(&rv8803->flags_lock);
558 rv8803->client = client; 559 rv8803->client = client;
559 rv8803->type = id->driver_data; 560 if (client->dev.of_node)
561 rv8803->type = (enum rv8803_type)
562 of_device_get_match_data(&client->dev);
563 else
564 rv8803->type = id->driver_data;
560 i2c_set_clientdata(client, rv8803); 565 i2c_set_clientdata(client, rv8803);
561 566
562 flags = rv8803_read_reg(client, RV8803_FLAG); 567 flags = rv8803_read_reg(client, RV8803_FLAG);
@@ -627,9 +632,23 @@ static const struct i2c_device_id rv8803_id[] = {
627}; 632};
628MODULE_DEVICE_TABLE(i2c, rv8803_id); 633MODULE_DEVICE_TABLE(i2c, rv8803_id);
629 634
635static const struct of_device_id rv8803_of_match[] = {
636 {
637 .compatible = "microcrystal,rv8803",
638 .data = (void *)rx_8900
639 },
640 {
641 .compatible = "epson,rx8900",
642 .data = (void *)rx_8900
643 },
644 { }
645};
646MODULE_DEVICE_TABLE(of, rv8803_of_match);
647
630static struct i2c_driver rv8803_driver = { 648static struct i2c_driver rv8803_driver = {
631 .driver = { 649 .driver = {
632 .name = "rtc-rv8803", 650 .name = "rtc-rv8803",
651 .of_match_table = of_match_ptr(rv8803_of_match),
633 }, 652 },
634 .probe = rv8803_probe, 653 .probe = rv8803_probe,
635 .remove = rv8803_remove, 654 .remove = rv8803_remove,