From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752881AbdKIROX (ORCPT ); Thu, 9 Nov 2017 12:14:23 -0500 Received: from mail-lf0-f65.google.com ([209.85.215.65]:56816 "EHLO mail-lf0-f65.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751066AbdKIROR (ORCPT ); Thu, 9 Nov 2017 12:14:17 -0500 X-Google-Smtp-Source: ABhQp+TogelhLAbS3ObLZZM5MY1Hglxhg+dkoSobRz7xy/SiFsfbzHX6iDINYcDi63bGnVuHkf9NqA== From: Johan Hovold To: Greg Kroah-Hartman Cc: Rob Herring , Mark Rutland , Arnd Bergmann , Alan Stern , Peter Chen , linux-usb@vger.kernel.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, Johan Hovold Subject: [PATCH 1/8] dt-bindings: usb: fix example hub node name Date: Thu, 9 Nov 2017 18:07:16 +0100 Message-Id: <20171109170723.10960-2-johan@kernel.org> X-Mailer: git-send-email 2.15.0 In-Reply-To: <20171109170723.10960-1-johan@kernel.org> References: <20171109170723.10960-1-johan@kernel.org> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 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 --- Documentation/devicetree/bindings/usb/usb-device.txt | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Documentation/devicetree/bindings/usb/usb-device.txt b/Documentation/devicetree/bindings/usb/usb-device.txt index ce02cebac26a..4df7e22e0084 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>; }; -} +}; -- 2.15.0