Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

dt-bindings: net: pse-pd: ti,tps23881: Fix missing "additionalProperties" constraints

The child nodes are missing "additionalProperties" constraints which
means any undocumented properties or child nodes are allowed. Add the
constraints and all the undocumented properties exposed by the fix.

Fixes: f562202fedad ("dt-bindings: net: pse-pd: Add bindings for TPS23881 PSE controller")
Signed-off-by: Rob Herring (Arm) <robh@kernel.org>
Acked-by: Kory Maincent <kory.maincent@bootlin.com>
Link: https://lore.kernel.org/r/20240523171750.2837331-1-robh@kernel.org
Signed-off-by: Jakub Kicinski <kuba@kernel.org>

authored by

Rob Herring (Arm) and committed by
Jakub Kicinski
12f86b9a 0fe53c0a

+18
+18
Documentation/devicetree/bindings/net/pse-pd/ti,tps23881.yaml
··· 29 29 of the ports conversion matrix that establishes relationship between 30 30 the logical ports and the physical channels. 31 31 type: object 32 + additionalProperties: false 33 + 34 + properties: 35 + "#address-cells": 36 + const: 1 37 + 38 + "#size-cells": 39 + const: 0 32 40 33 41 patternProperties: 34 42 '^channel@[0-7]$': 35 43 type: object 44 + additionalProperties: false 45 + 46 + properties: 47 + reg: 48 + maxItems: 1 49 + 36 50 required: 37 51 - reg 52 + 53 + required: 54 + - "#address-cells" 55 + - "#size-cells" 38 56 39 57 unevaluatedProperties: false 40 58