From: Clemens Gruber Date: Fri, 5 Nov 2021 13:46:50 +0000 (+0100) Subject: rtc: ds1337: fix compatible string typo X-Git-Tag: v2025.01-rc5-pxa1908~1641^2 X-Git-Url: http://git.dujemihanovic.xyz/?a=commitdiff_plain;h=6f84e809d9a373961d34f5b408bf44702b8c978c;p=u-boot.git rtc: ds1337: fix compatible string typo The driver supports the ds1339 as well, which was probably intended by the author but prevented by a typo. Fix the typo. Signed-off-by: Clemens Gruber --- diff --git a/drivers/rtc/ds1337.c b/drivers/rtc/ds1337.c index 4986c96f86..486c01f9ba 100644 --- a/drivers/rtc/ds1337.c +++ b/drivers/rtc/ds1337.c @@ -306,7 +306,7 @@ static const struct rtc_ops ds1337_rtc_ops = { static const struct udevice_id ds1337_rtc_ids[] = { { .compatible = "ds1337" }, { .compatible = "ds1338" }, - { .compatible = "ds1338" }, + { .compatible = "ds1339" }, { } };