Re: [PATCH] dt-bindings: gpio: mvebu: Fix "unevaluatedProperties" to be false

From: Bartosz Golaszewski
Date: Mon Feb 05 2024 - 03:30:17 EST


On Fri, Feb 2, 2024 at 11:24 PM Rob Herring <robh@xxxxxxxxxx> wrote:
>
> Schemas need "unevaluatedProperties" or "additionalProperties" to be
> false in order to disallow undefined properties. Only common or
> otherwise incomplete schemas should allow undefined properties.
>
> Signed-off-by: Rob Herring <robh@xxxxxxxxxx>
> ---
> Documentation/devicetree/bindings/gpio/gpio-mvebu.yaml | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/Documentation/devicetree/bindings/gpio/gpio-mvebu.yaml b/Documentation/devicetree/bindings/gpio/gpio-mvebu.yaml
> index f1bd1e6b2e1f..33d4e4716516 100644
> --- a/Documentation/devicetree/bindings/gpio/gpio-mvebu.yaml
> +++ b/Documentation/devicetree/bindings/gpio/gpio-mvebu.yaml
> @@ -115,7 +115,7 @@ allOf:
> required:
> - reg
>
> -unevaluatedProperties: true
> +unevaluatedProperties: false
>
> examples:
> - |
> --
> 2.43.0
>

Applied, thanks!

Bart