From mboxrd@z Thu Jan 1 00:00:00 1970 From: Arnd Bergmann Subject: Re: [PATCH 1/2] phy: usbphy: Add dt documentation for Broadcom Cygnus USB PHY driver Date: Tue, 17 Feb 2015 20:41:41 +0100 Message-ID: <8242260.cl4QTECoeX@wuerfel> References: <1424200821-16368-1-git-send-email-arun.ramamurthy@broadcom.com> <1424200821-16368-2-git-send-email-arun.ramamurthy@broadcom.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Return-path: In-Reply-To: <1424200821-16368-2-git-send-email-arun.ramamurthy@broadcom.com> Sender: linux-kernel-owner@vger.kernel.org To: Arun Ramamurthy Cc: Kishon Vijay Abraham I , Rob Herring , Pawel Moll , Mark Rutland , Ian Campbell , Kumar Gala , devicetree@vger.kernel.org, Jonathan Richardson , Scott Branden , Ray Jui , linux-arm-kernel@lists.infradead.org, bcm-kernel-feedback-list@broadcom.com, linux-kernel@vger.kernel.org, Dmitry Torokhov , Anatol Pomazau List-Id: devicetree@vger.kernel.org On Tuesday 17 February 2015 11:20:20 Arun Ramamurthy wrote: > + /* This nodes declares port 0 > + and port 1 as host*/ > + > + ehci0: usb@0x18048000 { > + compatible = "generic-ehci"; > + reg = <0x18048000 0x100>; > + interrupts = ; > + phys = <&usbphy0 0 1 &usbphy0 1>; The second reference in the example is missing the last cell, as you have #phy-cells = <2>. > + phy-names = "usbp0","usbp1"; > + status = "okay"; > + }; Further, the binding for "generic-ehci" requires the name to be "usb", not "usbp0". You should probably update that binding if you can have multiple references to mention that. Can you make both names "usb"? If not, we should document a common naming scheme that the driver can use. Arnd