From: Johan Hovold Date: Thu, 9 Nov 2017 17:07:16 +0000 (+0100) Subject: dt-bindings: usb: fix example hub node name X-Git-Tag: v5.15~9938^2~7 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1759f27027c88adfd94b436fda219eb80531bf6d;p=platform%2Fkernel%2Flinux-starfive.git dt-bindings: usb: fix example hub node name According to the OF Recommended Practice for USB, hub nodes shall be named "hub", but the example had mixed up the label and node names. Fix the node name and drop the redundant label. While at it, remove a newline and add a missing semicolon to the example source. Signed-off-by: Johan Hovold Signed-off-by: Rob Herring --- diff --git a/Documentation/devicetree/bindings/usb/usb-device.txt b/Documentation/devicetree/bindings/usb/usb-device.txt index ce02ceb..4df7e22 100644 --- a/Documentation/devicetree/bindings/usb/usb-device.txt +++ b/Documentation/devicetree/bindings/usb/usb-device.txt @@ -16,12 +16,11 @@ Required properties: Example: &usb1 { - #address-cells = <1>; #size-cells = <0>; - hub: genesys@1 { + hub@1 { compatible = "usb5e3,608"; reg = <1>; }; -} +};