svn commit: r324217 - head/sys/arm/allwinner/clkng

Emmanuel Vadot manu at FreeBSD.org
Mon Oct 2 19:17:11 UTC 2017


Author: manu
Date: Mon Oct  2 19:17:09 2017
New Revision: 324217
URL: https://svnweb.freebsd.org/changeset/base/324217

Log:
  Allwinner H3 CCU: Fix build on ARM64
  
  ccu_h3.c is also used on ARM64 as it provides clocks for the H5 SoC.
  Since ARM64 doesn't have sys/gun/dts/include in it's include path, use
  the full name for the sun8i-h3-ccu.h include.
  
  Reported by:	andreast

Modified:
  head/sys/arm/allwinner/clkng/ccu_h3.c

Modified: head/sys/arm/allwinner/clkng/ccu_h3.c
==============================================================================
--- head/sys/arm/allwinner/clkng/ccu_h3.c	Mon Oct  2 18:25:30 2017	(r324216)
+++ head/sys/arm/allwinner/clkng/ccu_h3.c	Mon Oct  2 19:17:09 2017	(r324217)
@@ -43,8 +43,8 @@ __FBSDID("$FreeBSD$");
 #include <arm/allwinner/clkng/aw_clk_nkmp.h>
 #include <arm/allwinner/clkng/aw_clk_prediv_mux.h>
 
-#include <dt-bindings/clock/sun8i-h3-ccu.h>
-#include <dt-bindings/reset/sun8i-h3-ccu.h>
+#include <gnu/dts/include/dt-bindings/clock/sun8i-h3-ccu.h>
+#include <gnu/dts/include/dt-bindings/reset/sun8i-h3-ccu.h>
 
 #include "ccu_h3.h"
 


More information about the svn-src-head mailing list