summaryrefslogtreecommitdiff
path: root/drivers/rtc
diff options
context:
space:
mode:
authorHeiko Thiery <heiko.thiery@gmail.com>2021-09-23 12:14:32 +0300
committerStefano Babic <sbabic@denx.de>2021-10-07 17:53:50 +0300
commite1918ce299a10797df0f0f8e3df992fd6ed89aa6 (patch)
treeb4e440f07bfaad70b87ab6c004d6354f32c9a637 /drivers/rtc
parent5089d2fc8e4efc3ffad861fe2d127ff40b2f8064 (diff)
downloadu-boot-e1918ce299a10797df0f0f8e3df992fd6ed89aa6.tar.xz
rtc: rv8803: add epson,rx8803 and epson,rx8900 compatible
The RX8803 and RX8900 register layouts are compatible with the one of the RV8803. So add these to the compatibles. The same compatible strings are used and approved in linux kernel. Signed-off-by: Heiko Thiery <heiko.thiery@gmail.com> Reviewed-by: Michael Walle <michael@walle.cc>
Diffstat (limited to 'drivers/rtc')
-rw-r--r--drivers/rtc/rv8803.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/rtc/rv8803.c b/drivers/rtc/rv8803.c
index acd50c6564..5bae39d6e0 100644
--- a/drivers/rtc/rv8803.c
+++ b/drivers/rtc/rv8803.c
@@ -157,6 +157,8 @@ static const struct rtc_ops rv8803_rtc_ops = {
static const struct udevice_id rv8803_rtc_ids[] = {
{ .compatible = "microcrystal,rv8803", },
+ { .compatible = "epson,rx8803" },
+ { .compatible = "epson,rx8900" },
{ }
};