diff options
author | Alexandre Belloni <alexandre.belloni@bootlin.com> | 2018-08-27 23:23:43 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2019-11-20 17:59:39 +0100 |
commit | 66130c3f3793b9b0e3db7469153ff1160e9f91ac (patch) | |
tree | a854f0b6627bdf336e24b4be3b48567a80bfa678 /drivers/rtc | |
parent | 593177c468f27a7e56d90b37beebf3827825ef84 (diff) | |
download | linux-stable-66130c3f3793b9b0e3db7469153ff1160e9f91ac.tar.gz linux-stable-66130c3f3793b9b0e3db7469153ff1160e9f91ac.tar.bz2 linux-stable-66130c3f3793b9b0e3db7469153ff1160e9f91ac.zip |
rtc: rv8803: fix the rv8803 id in the OF table
[ Upstream commit c856618d20662695fcdb47bf4d560dc457662aec ]
The ID for RV8803 must be rv_8803
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'drivers/rtc')
-rw-r--r-- | drivers/rtc/rtc-rv8803.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/rtc/rtc-rv8803.c b/drivers/rtc/rtc-rv8803.c index aae2576741a6..6e06fb3b0b92 100644 --- a/drivers/rtc/rtc-rv8803.c +++ b/drivers/rtc/rtc-rv8803.c @@ -622,7 +622,7 @@ MODULE_DEVICE_TABLE(i2c, rv8803_id); static const struct of_device_id rv8803_of_match[] = { { .compatible = "microcrystal,rv8803", - .data = (void *)rx_8900 + .data = (void *)rv_8803 }, { .compatible = "epson,rx8900", |