Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 2 Oct 2017 19:17:09 +0000 (UTC)
From:      Emmanuel Vadot <manu@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r324217 - head/sys/arm/allwinner/clkng
Message-ID:  <201710021917.v92JH9TY096959@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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"
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201710021917.v92JH9TY096959>