From eb1eebb9aac1e6fff6c209656ade6344f8acc13f Mon Sep 17 00:00:00 2001 From: Emmanuel Vadot Date: Mon, 4 Dec 2017 20:45:15 +0000 Subject: [PATCH] Allwinner: Add H5 compatible to aw_ccu Recent DTS (from Linux 4.14) specify a compatible "allwinner,sun50i-h5-ccu" for H5 SoC. Since we get the DTB from u-boot this wasn't noticed. Add the compatible so later version of u-boot will not fail for us. --- sys/arm/allwinner/clkng/aw_ccung.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/arm/allwinner/clkng/aw_ccung.c b/sys/arm/allwinner/clkng/aw_ccung.c index 0377db85cbb1..220e81f34116 100644 --- a/sys/arm/allwinner/clkng/aw_ccung.c +++ b/sys/arm/allwinner/clkng/aw_ccung.c @@ -95,6 +95,7 @@ static struct ofw_compat_data compat_data[] = { #endif #if defined(SOC_ALLWINNER_H3) || defined(SOC_ALLWINNER_H5) { "allwinner,sun8i-h3-ccu", H3_CCU }, + { "allwinner,sun50i-h5-ccu", H3_CCU }, { "allwinner,sun8i-h3-r-ccu", H3_R_CCU }, #endif #if defined(SOC_ALLWINNER_A31)