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 34E26C3F6B0 for ; Thu, 25 Aug 2022 08:51:54 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231615AbiHYIvx (ORCPT ); Thu, 25 Aug 2022 04:51:53 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37868 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232464AbiHYIvt (ORCPT ); Thu, 25 Aug 2022 04:51:49 -0400 Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 734ACA8302; Thu, 25 Aug 2022 01:51:48 -0700 (PDT) Received: from pendragon.ideasonboard.com (62-78-145-57.bb.dnainternet.fi [62.78.145.57]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 564422B3; Thu, 25 Aug 2022 10:51:46 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1661417506; bh=hqjjTfpHavt0j/vu7b/diKsDIw1QdqTc5yyTW7GYfo8=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=Z8pStjaw+wTHpUqjfkrNYv4yhEOMiZpey4BovUqFDdUKaiJRG3zr27mJb+3KOVnqv SeSwIWuxOsniVY0CtkTuJBrvvODxoS4qbCjAnkQGfS00GuyUS1Limb9dDBRxhVsFoW HVOrzfbF2aIEGVjQzg6fMImib3ZqHBM+/31mCM9o= Date: Thu, 25 Aug 2022 11:51:40 +0300 From: Laurent Pinchart To: Rob Herring Cc: "James (Qian) Wang" , Liviu Dudau , Mihail Atanassov , David Airlie , Daniel Vetter , Krzysztof Kozlowski , Andrzej Hajda , Neil Armstrong , Robert Foss , Jonas Karlman , Jernej Skrabec , Rob Clark , Abhinav Kumar , Dmitry Baryshkov , Sean Paul , Inki Dae , Seung-Woo Kim , Kyungmin Park , Alim Akhtar , Andre Przywara , Krzysztof Kozlowski , dri-devel@lists.freedesktop.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, linux-arm-msm@vger.kernel.org, freedreno@lists.freedesktop.org, linux-arm-kernel@lists.infradead.org, linux-samsung-soc@vger.kernel.org Subject: Re: [PATCH] dt-bindings: display: Add missing (unevaluated|additional)Properties on child nodes Message-ID: References: <20220823145649.3118479-11-robh@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20220823145649.3118479-11-robh@kernel.org> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Rob, Thank you for the patch. On Tue, Aug 23, 2022 at 09:56:42AM -0500, Rob Herring wrote: > In order to ensure only documented properties are present, node schemas > must have unevaluatedProperties or additionalProperties set to false > (typically). > > Signed-off-by: Rob Herring Reviewed-by: Laurent Pinchart > --- > Documentation/devicetree/bindings/display/arm,komeda.yaml | 1 + > Documentation/devicetree/bindings/display/bridge/lvds-codec.yaml | 1 + > Documentation/devicetree/bindings/display/msm/gpu.yaml | 1 + > .../bindings/display/samsung/samsung,exynos7-decon.yaml | 1 + > .../devicetree/bindings/display/samsung/samsung,fimd.yaml | 1 + > 5 files changed, 5 insertions(+) > > diff --git a/Documentation/devicetree/bindings/display/arm,komeda.yaml b/Documentation/devicetree/bindings/display/arm,komeda.yaml > index 9f4aade97f10..3ad3eef89ca8 100644 > --- a/Documentation/devicetree/bindings/display/arm,komeda.yaml > +++ b/Documentation/devicetree/bindings/display/arm,komeda.yaml > @@ -58,6 +58,7 @@ properties: > patternProperties: > '^pipeline@[01]$': > type: object > + additionalProperties: false > description: > clocks > > diff --git a/Documentation/devicetree/bindings/display/bridge/lvds-codec.yaml b/Documentation/devicetree/bindings/display/bridge/lvds-codec.yaml > index 3a8614e0f627..84aafcbf0919 100644 > --- a/Documentation/devicetree/bindings/display/bridge/lvds-codec.yaml > +++ b/Documentation/devicetree/bindings/display/bridge/lvds-codec.yaml > @@ -51,6 +51,7 @@ properties: > properties: > port@0: > $ref: /schemas/graph.yaml#/$defs/port-base > + unevaluatedProperties: false > description: | > For LVDS encoders, port 0 is the parallel input > For LVDS decoders, port 0 is the LVDS input > diff --git a/Documentation/devicetree/bindings/display/msm/gpu.yaml b/Documentation/devicetree/bindings/display/msm/gpu.yaml > index 3397bc31d087..0179c816fa6d 100644 > --- a/Documentation/devicetree/bindings/display/msm/gpu.yaml > +++ b/Documentation/devicetree/bindings/display/msm/gpu.yaml > @@ -81,6 +81,7 @@ properties: > > zap-shader: > type: object > + additionalProperties: false > description: | > For a5xx and a6xx devices this node contains a memory-region that > points to reserved memory to store the zap shader that can be used to > diff --git a/Documentation/devicetree/bindings/display/samsung/samsung,exynos7-decon.yaml b/Documentation/devicetree/bindings/display/samsung/samsung,exynos7-decon.yaml > index 969bd8c563a5..dec1c9058876 100644 > --- a/Documentation/devicetree/bindings/display/samsung/samsung,exynos7-decon.yaml > +++ b/Documentation/devicetree/bindings/display/samsung/samsung,exynos7-decon.yaml > @@ -37,6 +37,7 @@ properties: > > i80-if-timings: > type: object > + additionalProperties: false > description: timing configuration for lcd i80 interface support > properties: > cs-setup: > diff --git a/Documentation/devicetree/bindings/display/samsung/samsung,fimd.yaml b/Documentation/devicetree/bindings/display/samsung/samsung,fimd.yaml > index 5d5cc220f78a..7593938601bb 100644 > --- a/Documentation/devicetree/bindings/display/samsung/samsung,fimd.yaml > +++ b/Documentation/devicetree/bindings/display/samsung/samsung,fimd.yaml > @@ -40,6 +40,7 @@ properties: > > i80-if-timings: > type: object > + additionalProperties: false > description: | > Timing configuration for lcd i80 interface support. > The parameters are defined as:: -- Regards, Laurent Pinchart