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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 57686C433F5 for ; Fri, 22 Apr 2022 16:28:18 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1386681AbiDVQbK (ORCPT ); Fri, 22 Apr 2022 12:31:10 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:59906 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S241617AbiDVQbJ (ORCPT ); Fri, 22 Apr 2022 12:31:09 -0400 Received: from phobos.denx.de (phobos.denx.de [85.214.62.61]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 19F5C5EDD8; Fri, 22 Apr 2022 09:28:16 -0700 (PDT) Received: from [127.0.0.1] (p578adb1c.dip0.t-ipconnect.de [87.138.219.28]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: marex@denx.de) by phobos.denx.de (Postfix) with ESMTPSA id E06CA83C24; Fri, 22 Apr 2022 18:28:13 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=denx.de; s=phobos-20191101; t=1650644894; bh=INwp8oMerWYi06Suz1qgAIuvZ6S1fWPnARFOxZDAW5U=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=lXrPzegpTOHhGqTOXMfhlLGnd9fPJA03I8KrBtP9ipktmhdw6M9lRIFiFKJBX/2yW 9zANnG9L9YM3apNusdIrEvKspBYODpzSN4gvPo2oqqolmD+617vCW6MBDwaNFrSoIk Rh/LqLtO4a1d0qfC81ilwrL80tPPElbU2GaTsiH4aoR3UgTAZbj8E5gb7RRqTorftj JaNWd3AwCFTtFHcgMmhdNEQxgMYRhfzhOOGT5zG27SjUcxr+1Rbg8ZwhOQQ8lQK3ZU 5RCBolRIbUMsJs2NO1Au84vjFHVECt6RHJiZb5cXXP+34gDHOU3bbARXvVZ7Sd+FRS KQM633/QrXYGw== Message-ID: <7d365d28-66ac-93d4-72b5-87d0b36ba017@denx.de> Date: Fri, 22 Apr 2022 18:28:13 +0200 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.8.0 Subject: Re: [PATCH 1/8] dt-bindings: rcc: Add optional external ethernet RX clock properties Content-Language: en-US To: Alexandre Torgue , arnd@arndb.de, robh+dt@kernel.org, Krzysztof Kozlowski , soc@kernel.org, Stephen Boyd , Philipp Zabel Cc: linux-arm-kernel@lists.infradead.org, devicetree@vger.kernel.org, linux-stm32@st-md-mailman.stormreply.com, linux-kernel@vger.kernel.org, Ahmad Fatoum , etienne.carriere@st.com References: <20220422150952.20587-1-alexandre.torgue@foss.st.com> <20220422150952.20587-2-alexandre.torgue@foss.st.com> From: Marek Vasut In-Reply-To: <20220422150952.20587-2-alexandre.torgue@foss.st.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: clamav-milter 0.103.5 at phobos.denx.de X-Virus-Status: Clean Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org On 4/22/22 17:09, Alexandre Torgue wrote: > From: Marek Vasut > > Describe optional external ethernet RX clock in the DT binding > to fix dtbs_check warnings like: > > arch/arm/boot/dts/stm32mp153c-dhcom-drc02.dt.yaml: rcc@50000000: 'assigned-clock-parents', 'assigned-clock-rates', 'assigned-clocks', 'clock-names', 'clocks' do not match any of the regexes: 'pinctrl-[0-9]+' > > Signed-off-by: Marek Vasut > Cc: Alexandre Torgue > Cc: Gabriel Fernandez > Cc: Rob Herring > To: devicetree@vger.kernel.org > Acked-by: Gabriel Fernandez > > diff --git a/Documentation/devicetree/bindings/clock/st,stm32mp1-rcc.yaml b/Documentation/devicetree/bindings/clock/st,stm32mp1-rcc.yaml > index a0ae4867ed27..7a251264582d 100644 > --- a/Documentation/devicetree/bindings/clock/st,stm32mp1-rcc.yaml > +++ b/Documentation/devicetree/bindings/clock/st,stm32mp1-rcc.yaml > @@ -59,6 +59,14 @@ properties: > - st,stm32mp1-rcc > - const: syscon > > + clocks: > + description: > + Specifies the external RX clock for ethernet MAC. > + maxItems: 1 > + > + clock-names: > + const: ETH_RX_CLK/ETH_REF_CLK > + > reg: > maxItems: 1 > Should this patch be part of this series, maybe this was re-sent by accident ?