diff options
author | Roland Stigge <stigge@antcom.de> | 2012-04-29 10:47:06 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-05-01 13:36:18 -0400 |
commit | 73108aa90cbfc663649885a06fe5c1235307de1c (patch) | |
tree | 2a380085e86514a1e3916758f06266fbfbcfd315 /Documentation/devicetree/bindings/usb/ohci-nxp.txt | |
parent | 24a28e4283510dcd58890379a42b8a7d3201d9d3 (diff) |
USB: ohci-nxp: Use isp1301 driver
ohci-nxp duplicates the isp1301 driver. This patch removes this code and makes
ohci-nxp use the new separate isp1301 driver instead.
Signed-off-by: Roland Stigge <stigge@antcom.de>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'Documentation/devicetree/bindings/usb/ohci-nxp.txt')
-rw-r--r-- | Documentation/devicetree/bindings/usb/ohci-nxp.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/usb/ohci-nxp.txt b/Documentation/devicetree/bindings/usb/ohci-nxp.txt index b5c36319e634..71e28c1017ed 100644 --- a/Documentation/devicetree/bindings/usb/ohci-nxp.txt +++ b/Documentation/devicetree/bindings/usb/ohci-nxp.txt | |||
@@ -5,12 +5,20 @@ Required properties: | |||
5 | - reg: physical base address of the controller and length of memory mapped | 5 | - reg: physical base address of the controller and length of memory mapped |
6 | region. | 6 | region. |
7 | - interrupts: The OHCI interrupt | 7 | - interrupts: The OHCI interrupt |
8 | - transceiver: phandle of the associated ISP1301 device - this is necessary for | ||
9 | the UDC controller for connecting to the USB physical layer | ||
8 | 10 | ||
9 | Example (LPC32xx): | 11 | Example (LPC32xx): |
10 | 12 | ||
13 | isp1301: usb-transceiver@2c { | ||
14 | compatible = "nxp,isp1301"; | ||
15 | reg = <0x2c>; | ||
16 | }; | ||
17 | |||
11 | ohci@31020000 { | 18 | ohci@31020000 { |
12 | compatible = "nxp,ohci-nxp"; | 19 | compatible = "nxp,ohci-nxp"; |
13 | reg = <0x31020000 0x300>; | 20 | reg = <0x31020000 0x300>; |
14 | interrupt-parent = <&mic>; | 21 | interrupt-parent = <&mic>; |
15 | interrupts = <0x3b 0>; | 22 | interrupts = <0x3b 0>; |
23 | transceiver = <&isp1301>; | ||
16 | }; | 24 | }; |