From: Heiko Thiery Date: Thu, 23 Sep 2021 09:14:32 +0000 (+0200) Subject: rtc: rv8803: add epson,rx8803 and epson,rx8900 compatible X-Git-Tag: v2022.01~81^2~34 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e1918ce299a10797df0f0f8e3df992fd6ed89aa6;p=platform%2Fkernel%2Fu-boot.git 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 Reviewed-by: Michael Walle --- diff --git a/drivers/rtc/rv8803.c b/drivers/rtc/rv8803.c index acd50c6..5bae39d 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" }, { } };