dt-bindings: usb: Add missing (unevaluated|additional)Properties on child nodes
In order to ensure only documented properties are present, node schemas must have unevaluatedProperties or additionalProperties set to false (typically). Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Signed-off-by: Rob Herring <robh@kernel.org> Link: https://lore.kernel.org/r/20220823145649.3118479-9-robh@kernel.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>pull/520/merge
parent
4dce3b3751
commit
e372a6dbc5
|
|
@ -23,6 +23,8 @@ properties:
|
|||
connector:
|
||||
type: object
|
||||
$ref: ../connector/usb-connector.yaml
|
||||
unevaluatedProperties: false
|
||||
|
||||
description:
|
||||
Properties for usb c connector.
|
||||
|
||||
|
|
|
|||
|
|
@ -67,6 +67,7 @@ properties:
|
|||
|
||||
vhub-strings:
|
||||
type: object
|
||||
additionalProperties: false
|
||||
|
||||
properties:
|
||||
'#address-cells':
|
||||
|
|
@ -78,6 +79,7 @@ properties:
|
|||
patternProperties:
|
||||
'^string@[0-9a-f]+$':
|
||||
type: object
|
||||
additionalProperties: false
|
||||
description: string descriptors of the specific language
|
||||
|
||||
properties:
|
||||
|
|
|
|||
|
|
@ -33,6 +33,7 @@ properties:
|
|||
connector:
|
||||
type: object
|
||||
$ref: /schemas/connector/usb-connector.yaml#
|
||||
unevaluatedProperties: false
|
||||
|
||||
properties:
|
||||
compatible:
|
||||
|
|
@ -74,9 +75,14 @@ examples:
|
|||
data-role = "dual";
|
||||
typec-power-opmode = "default";
|
||||
|
||||
port {
|
||||
typec_con_ep: endpoint {
|
||||
remote-endpoint = <&usbotg_hs_ep>;
|
||||
ports {
|
||||
#address-cells = <1>;
|
||||
#size-cells = <0>;
|
||||
port@0 {
|
||||
reg = <0>;
|
||||
typec_con_ep: endpoint {
|
||||
remote-endpoint = <&usbotg_hs_ep>;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
|||
|
|
@ -28,6 +28,7 @@ properties:
|
|||
connector:
|
||||
type: object
|
||||
$ref: ../connector/usb-connector.yaml#
|
||||
unevaluatedProperties: false
|
||||
description:
|
||||
The managed USB Type-C connector. Since WUSB3801 does not support
|
||||
Power Delivery, the node should have the "pd-disable" property.
|
||||
|
|
|
|||
Loading…
Reference in New Issue