From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 38AD82DD5F6; Fri, 17 Apr 2026 04:36:27 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1776400588; cv=none; b=F5DfpuaMjD1lPqMGOGlJL514JKhJTbVV1fi8oSRxi5KH6E87/ZzC3uAGV2T8S2TC75Fm1VK/Jwlq3HzRAZOQv9h/mnHcfG1slJNiUws6DtRCzgTCU+/MbCu80cyeI6X269BE3zywhBO68CDV4qYHxlbxAtMhOCl+rpvBBgCePgc= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1776400588; c=relaxed/simple; bh=p9z6malVt1ssjUUpjdOzlvkCHo7e2WH64RUFkdyqG8c=; h=Date:Content-Type:MIME-Version:From:Cc:To:In-Reply-To:References: Message-Id:Subject; b=GYNryfaaGNc7iV0ZeKsJaqFptm68qNNlQ9wcptUvQIlDh5bSQHivZbOSNArw24Suy9GD8a+STaVNIe/LFbf8PAv9bep2Scqg99s2Q4SM7jrEcIJuAhEEQhOyMaLaJfJ3qE8e0HzEAIS6sRQqhm++dpzGxvWRpgrvag3tH3c62rc= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=gcEizoGL; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="gcEizoGL" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 90BC0C19425; Fri, 17 Apr 2026 04:36:27 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1776400587; bh=p9z6malVt1ssjUUpjdOzlvkCHo7e2WH64RUFkdyqG8c=; h=Date:From:Cc:To:In-Reply-To:References:Subject:From; b=gcEizoGL5OQpTaApJzj+G6WhUEdLesHSt3OdWa0XYZW+EDUvbKGQ4W7PeJT+g/+1t Dj2QVSVw5SdyRKKbaXbaSvjBSQfVfzHeDn3FB4V1iYjnVN0UsIULTDQoqLdT+Y0Ljj xZW/N6mKZuzbsjFk11dW2x4V77fe7MV+A8ZxYJQDrWy3WhWpOIGqmochFcbi0arqM6 iahRgJmTeGAfx9W6liCZDKdWxYlh1gZKpG58cP039xfz8jihEATpyHS8kizBNP3pN4 zoOY4R7mkENx/2Q/iUIaKIkSMn9+/cgGqCGBrjWfTu8ZMf4VQmQ4U7+q3eSi3qDqIX 6uscZjvr3l50A== Date: Thu, 16 Apr 2026 23:36:25 -0500 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 From: "Rob Herring (Arm)" Cc: Paolo Abeni , Jakub Kicinski , Alexandre Torgue , Maxime Coquelin , Emil Renner Berthing , Andrew Lunn , "David S . Miller" , linux-stm32@st-md-mailman.stormreply.com, devicetree@vger.kernel.org, netdev@vger.kernel.org, Krzysztof Kozlowski , Rob Herring , linux-kernel@vger.kernel.org, Eric Dumazet , Conor Dooley To: Minda Chen In-Reply-To: <20260417024523.107786-4-minda.chen@starfivetech.com> References: <20260417024523.107786-1-minda.chen@starfivetech.com> <20260417024523.107786-4-minda.chen@starfivetech.com> Message-Id: <177640058543.32784.7631250778558524141.robh@kernel.org> Subject: Re: [net-next v2 3/5] dt-bindings: net: starfive,jh7110-dwmac: Add JHB100 sgmii rx clk On Fri, 17 Apr 2026 10:45:21 +0800, Minda Chen wrote: > JHB100 SGMII interface tx/rx mac clock is split and require to > set clock rate in 10M/100M/1000M speed. So dts need to add a > new rx clock in code, dts and dt binding doc. > > Signed-off-by: Minda Chen > --- > .../bindings/net/starfive,jh7110-dwmac.yaml | 42 ++++++++++++++++--- > 1 file changed, 36 insertions(+), 6 deletions(-) > My bot found errors running 'make dt_binding_check' on your patch: yamllint warnings/errors: ./Documentation/devicetree/bindings/net/starfive,jh7110-dwmac.yaml:56:8: [warning] wrong indentation: expected 8 but found 7 (indentation) dtschema/dtc warnings/errors: doc reference errors (make refcheckdocs): See https://patchwork.kernel.org/project/devicetree/patch/20260417024523.107786-4-minda.chen@starfivetech.com The base for the series is generally the latest rc1. A different dependency should be noted in *this* patch. If you already ran 'make dt_binding_check' and didn't see the above error(s), then make sure 'yamllint' is installed and dt-schema is up to date: pip3 install dtschema --upgrade Please check and re-submit after running the above command yourself. Note that DT_SCHEMA_FILES can be set to your schema file to speed up checking your schema. However, it must be unset to test all examples with your schema.