From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-15.5 required=3.0 tests=BAYES_00,INCLUDES_CR_TRAILER, INCLUDES_PATCH,MAILING_LIST_MULTI,NICE_REPLY_A,SPF_HELO_NONE,SPF_PASS, USER_AGENT_SANE_1 autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id B00A8C4332D for ; Wed, 3 Mar 2021 20:56:05 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 6BA6464EF8 for ; Wed, 3 Mar 2021 20:56:05 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1386649AbhCCSpL (ORCPT ); Wed, 3 Mar 2021 13:45:11 -0500 Received: from mail-ej1-f42.google.com ([209.85.218.42]:42673 "EHLO mail-ej1-f42.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1578002AbhCCSQP (ORCPT ); Wed, 3 Mar 2021 13:16:15 -0500 Received: by mail-ej1-f42.google.com with SMTP id c10so17551901ejx.9; Wed, 03 Mar 2021 10:15:58 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:subject:to:references:cc:from:message-id:date :user-agent:mime-version:in-reply-to:content-language :content-transfer-encoding; bh=L75O0W+60sA8PCw5vctCVfCnPFx9Df6RaLcl8AjpdUk=; b=KBTT0ez2c+18fHXUZ2+UWxOeMkeMa2GQ3BSjuMARJyu2Wl3wXelvn0g37uJwWuFbxq 40BW3YewtWd7oWmArWmVbOKxPkG2NKtAMBkwqfhgw7N9XYmXRZOb8WNMX66cVENpWfdP ZqYIZAyIShYXnsks4tiAt2fpOwVtf+N7Xap3IJql/SgE2vcSE0ReInqJ8ndpMMDi/XAw fAO5bK2SWOxkxysGrjTd/6rrrcWaeozHAV+lP7rz2t7YVXmL4c+BW0B5crUM7CT3jCVB ymqxqg6NAInkqjR4/AYarA87mZ1icpSQDmW6sDAKZ2VMcayx+BtHiXdGlk/QFUBy6PFl Q7CQ== X-Gm-Message-State: AOAM533LaoJ5IwhPEcsoEtk++OT6bVKjBkR3HoFRrMt0sIcSZ5UEWaYk Ysd2rkmKXOac64A9mMs8S0E= X-Google-Smtp-Source: ABdhPJyv9ZHoKKrSfAYG3E0t2WiB0w2EQIFOB2iy2f5mHjXqT5rXzjkL15BWUuBoI/U9Tncs2D1Ixw== X-Received: by 2002:a17:906:4c56:: with SMTP id d22mr110677ejw.426.1614795332589; Wed, 03 Mar 2021 10:15:32 -0800 (PST) Received: from [192.168.1.116] (adsl-84-226-167-205.adslplus.ch. [84.226.167.205]) by smtp.googlemail.com with ESMTPSA id t15sm19739654edc.34.2021.03.03.10.15.31 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Wed, 03 Mar 2021 10:15:31 -0800 (PST) Subject: Re: [PATCH 03/11] arm64: dts: intel: socfpga: override clocks by label List-Id: To: arm@kernel.org, soc@kernel.org, Arnd Bergmann , Olof Johansson References: <20210210171823.333802-1-krzk@kernel.org> <20210210171823.333802-3-krzk@kernel.org> Cc: devicetree@vger.kernel.org, Will Deacon , Daniele Alessandrelli , "Paul J. Murphy" , linux-kernel@vger.kernel.org, Catalin Marinas , linux-arm-kernel@lists.infradead.org, Rob Herring From: Krzysztof Kozlowski Message-ID: Date: Wed, 3 Mar 2021 19:15:31 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.7.1 MIME-Version: 1.0 In-Reply-To: <20210210171823.333802-3-krzk@kernel.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org On 10/02/2021 18:18, Krzysztof Kozlowski wrote: > Using full paths to extend or override a device tree node is error > prone. If there was a typo error, a new node will be created instead of > extending the existing node. This will lead to run-time errors that > could be hard to detect. > > A mistyped label on the other hand, will cause a dtc compile error > (during build time). > > Signed-off-by: Krzysztof Kozlowski > --- > arch/arm64/boot/dts/intel/socfpga_agilex_socdk.dts | 12 ++++-------- > .../boot/dts/intel/socfpga_agilex_socdk_nand.dts | 12 ++++-------- > arch/arm64/boot/dts/intel/socfpga_n5x_socdk.dts | 12 ++++-------- > 3 files changed, 12 insertions(+), 24 deletions(-) Hi Arnd and Olof, There was no response from Intel SoCFPGA maintainers for the DTS patches, so maybe you could take it directly? I can provide you pull request with these, if that's preferred. They apply cleanly. You could also take the dt-bindings 2/11 or it could go via Rob. About the defconfig patch (1/11) I will work on it more and resend it with your comments (you gave me review). Best regards, Krzysztof