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 DF7C5C7619A for ; Mon, 20 Mar 2023 06:30:48 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229891AbjCTGar (ORCPT ); Mon, 20 Mar 2023 02:30:47 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:59090 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229449AbjCTGap (ORCPT ); Mon, 20 Mar 2023 02:30:45 -0400 Received: from ex01.ufhost.com (ex01.ufhost.com [61.152.239.75]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 2C271E18B; Sun, 19 Mar 2023 23:30:44 -0700 (PDT) Received: from EXMBX165.cuchost.com (unknown [175.102.18.54]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "EXMBX165", Issuer "EXMBX165" (not verified)) by ex01.ufhost.com (Postfix) with ESMTP id AC9D424E1BA; Mon, 20 Mar 2023 14:30:42 +0800 (CST) Received: from EXMBX073.cuchost.com (172.16.6.83) by EXMBX165.cuchost.com (172.16.6.75) with Microsoft SMTP Server (TLS) id 15.0.1497.42; Mon, 20 Mar 2023 14:30:42 +0800 Received: from [192.168.60.83] (180.164.60.184) by EXMBX073.cuchost.com (172.16.6.83) with Microsoft SMTP Server (TLS) id 15.0.1497.42; Mon, 20 Mar 2023 14:30:42 +0800 Message-ID: <7ca0728c-085b-1b4c-96e7-93c6643d7637@starfivetech.com> Date: Mon, 20 Mar 2023 14:30:41 +0800 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Thunderbird/102.9.0 Subject: Re: [PATCH v2 2/6] media: dt-bindings: cadence-csi2rx: Convert to DT schema Content-Language: en-US To: Rob Herring CC: , , , Rob Herring , "Jernej Skrabec" , Hans Verkuil , Maxime Ripard , Krzysztof Kozlowski , , Philipp Zabel , Andrzej Pietrasiewicz , Todor Tomov , Eugen Hristev , Laurent Pinchart , Robert Foss , "Mauro Carvalho Chehab" References: <20230310120553.60586-1-jack.zhu@starfivetech.com> <20230310120553.60586-3-jack.zhu@starfivetech.com> <167845582304.1165699.16322398900784780057.robh@kernel.org> From: Jack Zhu In-Reply-To: <167845582304.1165699.16322398900784780057.robh@kernel.org> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Originating-IP: [180.164.60.184] X-ClientProxiedBy: EXCAS064.cuchost.com (172.16.6.24) To EXMBX073.cuchost.com (172.16.6.83) X-YovoleRuleAgent: yovoleflag Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 2023/3/10 21:55, Rob Herring wrote: > > On Fri, 10 Mar 2023 20:05:49 +0800, Jack Zhu wrote: >> Convert DT bindings document for Cadence MIPI-CSI2 RX controller >> to DT schema format and add new properties. >> >> Signed-off-by: Jack Zhu >> --- >> .../devicetree/bindings/media/cdns,csi2rx.txt | 100 ----------- >> .../bindings/media/cdns,csi2rx.yaml | 163 ++++++++++++++++++ >> MAINTAINERS | 1 + >> 3 files changed, 164 insertions(+), 100 deletions(-) >> delete mode 100644 Documentation/devicetree/bindings/media/cdns,csi2rx.txt >> create mode 100644 Documentation/devicetree/bindings/media/cdns,csi2rx.yaml >> > > My bot found errors running 'make DT_CHECKER_FLAGS=-m dt_binding_check' > on your patch (DT_CHECKER_FLAGS is new in v5.13): > > yamllint warnings/errors: > > dtschema/dtc warnings/errors: > Documentation/devicetree/bindings/media/cdns,csi2rx.example.dts:18.30-58.11: Warning (unit_address_format): /example-0/csi@0d060000: unit name should not have leading 0s > > doc reference errors (make refcheckdocs): > > See https://patchwork.ozlabs.org/project/devicetree-bindings/patch/20230310120553.60586-3-jack.zhu@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. > OK, will fix. Thanks.