Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751323AbeAEF1x (ORCPT + 1 other); Fri, 5 Jan 2018 00:27:53 -0500 Received: from mail-lf0-f68.google.com ([209.85.215.68]:46117 "EHLO mail-lf0-f68.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751220AbeAEF1v (ORCPT ); Fri, 5 Jan 2018 00:27:51 -0500 X-Google-Smtp-Source: ACJfBoubOGAJK3i9ODnXOMLvM1VnuHqIwwo1TISijpraoB4gYUTUC/sYjBl0oWFq3szSW2zi3ip1JCMyTpCK6BrOkvg= MIME-Version: 1.0 In-Reply-To: References: <20171207125715.16160-1-chunyan.zhang@spreadtrum.com> <20171207125715.16160-13-chunyan.zhang@spreadtrum.com> From: Chunyan Zhang Date: Fri, 5 Jan 2018 13:27:08 +0800 Message-ID: Subject: Re: [PATCH V7 12/12] arm64: dts: add clocks for SC9860 To: Arnd Bergmann Cc: Chunyan Zhang , Stephen Boyd , Michael Turquette , Rob Herring , Mark Rutland , Catalin Marinas , Will Deacon , linux-clk , Linux Kernel Mailing List , DTML , Linux ARM , Mark Brown , Xiaolong Zhang , Ben Li , Orson Zhai Content-Type: text/plain; charset="UTF-8" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Return-Path: On 5 January 2018 at 07:01, Arnd Bergmann wrote: > On Thu, Jan 4, 2018 at 10:34 PM, Arnd Bergmann wrote: >> On Thu, Dec 7, 2017 at 1:57 PM, Chunyan Zhang >> wrote: >>> Some clocks on SC9860 are in the same address area with syscon devices, >>> those are what have a property of 'sprd,syscon' which would refer to >>> syscon devices, others would have a reg property indicated their address >>> ranges. >>> >>> Signed-off-by: Chunyan Zhang >>> --- >>> arch/arm64/boot/dts/sprd/sc9860.dtsi | 115 +++++++++++++++++++++++++++++++++++ >>> arch/arm64/boot/dts/sprd/whale2.dtsi | 18 +++++- >>> 2 files changed, 131 insertions(+), 2 deletions(-) >>> >>> diff --git a/arch/arm64/boot/dts/sprd/sc9860.dtsi b/arch/arm64/boot/dts/sprd/sc9860.dtsi >>> index 7b7d8ce..bf03da4 100644 >>> --- a/arch/arm64/boot/dts/sprd/sc9860.dtsi >>> +++ b/arch/arm64/boot/dts/sprd/sc9860.dtsi >>> @@ -7,6 +7,7 @@ >>> */ >>> >>> #include >>> +#include >>> #include "whale2.dtsi" >> >> This caused a build error since the sprd,sc9860-clk.h file does not >> exist, I'll revert or undo the patch tomorrow. > > I've taken another look, and fixing it by removing the broken #include > was easier than undoing the patches, so I did that now, see > https://patchwork.kernel.org/patch/10145773/ Ok, thanks Arnd! Chunyan > > Arnd