diff options
author | Vladimir Oltean <vladimir.oltean@nxp.com> | 2021-10-18 22:29:50 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-10-20 13:32:28 +0300 |
commit | e00eb643324c7a57f4f3fcb2bc5e882f4b88a3a1 (patch) | |
tree | 9ad19d5cf32483aa0ab2923b063e0cfc6f8c3828 /Documentation/devicetree/bindings/net | |
parent | 7a414b6e1a1c799fa74451db3a84c686b727bd7e (diff) | |
download | linux-e00eb643324c7a57f4f3fcb2bc5e882f4b88a3a1.tar.xz |
dt-bindings: net: dsa: inherit the ethernet-controller DT schema
Since a switch is basically a bunch of Ethernet controllers, just
inherit the common schema for one to get stronger type validation of the
properties of a port.
For example, before this change it was valid to have a phy-mode = "xfi"
even if "xfi" is not part of ethernet-controller.yaml, now it is not.
Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com>
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'Documentation/devicetree/bindings/net')
-rw-r--r-- | Documentation/devicetree/bindings/net/dsa/dsa.yaml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/net/dsa/dsa.yaml b/Documentation/devicetree/bindings/net/dsa/dsa.yaml index 224cfa45de9a..9cfd08cd31da 100644 --- a/Documentation/devicetree/bindings/net/dsa/dsa.yaml +++ b/Documentation/devicetree/bindings/net/dsa/dsa.yaml @@ -46,6 +46,9 @@ patternProperties: type: object description: Ethernet switch ports + allOf: + - $ref: "http://devicetree.org/schemas/net/ethernet-controller.yaml#" + properties: reg: description: Port number |