The branch main has been updated by thj: URL: https://cgit.FreeBSD.org/src/commit/?id=063244ff95a2fd62054725d59f3856645f539dea
commit 063244ff95a2fd62054725d59f3856645f539dea Author: Tom Jones <[email protected]> AuthorDate: 2026-02-09 10:04:38 +0000 Commit: Tom Jones <[email protected]> CommitDate: 2026-02-09 10:22:18 +0000 aw_rtc: Add H616 compat string Reviewed by: manu Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D54908 --- sys/arm/allwinner/aw_rtc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/arm/allwinner/aw_rtc.c b/sys/arm/allwinner/aw_rtc.c index d3a73d98d86a..4c3efa3315b1 100644 --- a/sys/arm/allwinner/aw_rtc.c +++ b/sys/arm/allwinner/aw_rtc.c @@ -137,6 +137,7 @@ static struct ofw_compat_data compat_data[] = { { "allwinner,sun20i-d1-rtc", (uintptr_t) &h3_conf }, { "allwinner,sun50i-h5-rtc", (uintptr_t) &h3_conf }, { "allwinner,sun50i-h6-rtc", (uintptr_t) &h3_conf }, + { "allwinner,sun50i-h616-rtc", (uintptr_t) &h3_conf }, { NULL, 0 } };
