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 29351C04E69 for ; Thu, 10 Aug 2023 16:21:46 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234842AbjHJQVo (ORCPT ); Thu, 10 Aug 2023 12:21:44 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:51976 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230019AbjHJQVm (ORCPT ); Thu, 10 Aug 2023 12:21:42 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 7C7A8270E; Thu, 10 Aug 2023 09:21:38 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 1502A662F0; Thu, 10 Aug 2023 16:21:38 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 6DCDDC433CA; Thu, 10 Aug 2023 16:21:36 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1691684497; bh=lEKql8+vNOvT3PVTTDq2YEYXsHM2wKRCKSo4hM72quc=; h=From:To:Cc:In-Reply-To:References:Subject:Date:From; b=rwcTsvzgxpHJKEXDpPjhSIwq3guyZlltoXOyBQLY3GG4KVTE5zUkVjkLsjOPyj2ei WQN4eOeICL4iVLRGZWhqhwMLtaNhtPnrOffjutkLhGCVtGrgXbohvzQxA0aVTJ4CZG vXre1mRyO0tz3Q13ip6bBy0P6vE9UjuSz3v2UDSX7jT9X6eanbunmOaBfQ+lhOIPFC GO2q4oHg8QzODusO+2KO39INa1nX+TfUoV+WrGp1NBYrYxFt0aSOUJt3t/QvFkgUbI O3ZpRqa6TgNpFrDkBDVjUMWG+WMuRo/KEQiHWnpFLzboec04TjHfwIwhY6h7j2ZFiw /wM+t41Xo8ggw== Received: (nullmailer pid 480249 invoked by uid 1000); Thu, 10 Aug 2023 16:21:30 -0000 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit MIME-Version: 1.0 From: Rob Herring To: Luca Ceresoli Cc: Conor Dooley , Rob Herring , Daniel Vetter , Paul Kocialkowski , Thomas Petazzoni , Sam Ravnborg , Neil Armstrong , dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org, devicetree@vger.kernel.org, David Airlie , Krzysztof Kozlowski In-Reply-To: <20230810144116.855951-2-luca.ceresoli@bootlin.com> References: <20230810144116.855951-1-luca.ceresoli@bootlin.com> <20230810144116.855951-2-luca.ceresoli@bootlin.com> Message-Id: <169168448913.480168.11890907861387742608.robh@kernel.org> Subject: Re: [PATCH v2 2/3] dt-bindings: display: panel: Add panels based on ILITEK ILI9806E Date: Thu, 10 Aug 2023 10:21:30 -0600 Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org On Thu, 10 Aug 2023 16:41:15 +0200, Luca Ceresoli wrote: > Add bindings for LCD panels based on the ILITEK ILI9806E RGB controller > connected over SPI and the "ShenZhen New Display Co NDS040480800-V3" > 480x800 panel based on it. > > Signed-off-by: Luca Ceresoli > > --- > > Changes in v2: > - remove T: line form MAINTAINERS entry > - reference spi-peripheral-props.yaml > - add 'maxItems: 1' to reg > - use unevaluatedProperties > - remove out of scope backlight node > --- > .../display/panel/ilitek,ili9806e.yaml | 63 +++++++++++++++++++ > MAINTAINERS | 5 ++ > 2 files changed, 68 insertions(+) > create mode 100644 Documentation/devicetree/bindings/display/panel/ilitek,ili9806e.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: doc reference errors (make refcheckdocs): See https://patchwork.ozlabs.org/project/devicetree-bindings/patch/20230810144116.855951-2-luca.ceresoli@bootlin.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.