diff options
author | Rob Herring <robh@kernel.org> | 2022-10-14 22:51:04 +0200 |
---|---|---|
committer | Rob Herring <robh@kernel.org> | 2022-10-20 16:21:07 +0200 |
commit | c9adc3bd1180d2911d2b1b886dbec916805be998 (patch) | |
tree | 3b148ee286f9c9cdd10770ad33f798e945cedc62 /Documentation/devicetree/bindings/phy | |
parent | dt-bindings: clock: Convert pwm-clock to DT schema (diff) | |
download | linux-c9adc3bd1180d2911d2b1b886dbec916805be998.tar.xz linux-c9adc3bd1180d2911d2b1b886dbec916805be998.zip |
dt-bindings: Remove "status" from schema examples, again
There's no reason to have "status" properties in examples. "okay" is the
default, and "disabled" turns off some schema checks ('required'
specifically).
A meta-schema check for this is pending, so hopefully the last time to
fix these.
Fix the indentation in intel,phy-thunderbay-emmc while we're here.
Acked-by: Nicolas Ferre <nicolas.ferre@microchip.com>
Acked-by: Thierry Reding <treding@nvidia.com>
Acked-by: Jonathan Cameron <Jonathan.Cameron@huawei.com> #for-iio
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Acked-By: Vinod Koul <vkoul@kernel.org>
Link: https://lore.kernel.org/r/20221014205104.2822159-1-robh@kernel.org
Signed-off-by: Rob Herring <robh@kernel.org>
Diffstat (limited to 'Documentation/devicetree/bindings/phy')
-rw-r--r-- | Documentation/devicetree/bindings/phy/intel,phy-thunderbay-emmc.yaml | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/Documentation/devicetree/bindings/phy/intel,phy-thunderbay-emmc.yaml b/Documentation/devicetree/bindings/phy/intel,phy-thunderbay-emmc.yaml index 34bdb5c4cae8..b09e5ba5e127 100644 --- a/Documentation/devicetree/bindings/phy/intel,phy-thunderbay-emmc.yaml +++ b/Documentation/devicetree/bindings/phy/intel,phy-thunderbay-emmc.yaml @@ -36,11 +36,10 @@ additionalProperties: false examples: - | - mmc_phy@80440800 { - #phy-cells = <0x0>; - compatible = "intel,thunderbay-emmc-phy"; - status = "okay"; - reg = <0x80440800 0x100>; - clocks = <&emmc>; - clock-names = "emmcclk"; - }; + mmc_phy@80440800 { + #phy-cells = <0x0>; + compatible = "intel,thunderbay-emmc-phy"; + reg = <0x80440800 0x100>; + clocks = <&emmc>; + clock-names = "emmcclk"; + }; |