aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Documentation/devicetree/bindings/usb/usb-ehci.txt4
-rw-r--r--drivers/usb/host/Kconfig1
-rw-r--r--drivers/usb/host/ehci-platform.c2
3 files changed, 3 insertions, 4 deletions
diff --git a/Documentation/devicetree/bindings/usb/usb-ehci.txt b/Documentation/devicetree/bindings/usb/usb-ehci.txt
index 2c1aeebe12b7..ff151ec084c4 100644
--- a/Documentation/devicetree/bindings/usb/usb-ehci.txt
+++ b/Documentation/devicetree/bindings/usb/usb-ehci.txt
@@ -1,7 +1,7 @@
1USB EHCI controllers 1USB EHCI controllers
2 2
3Required properties: 3Required properties:
4 - compatible : should be "usb-ehci". 4 - compatible : should be "generic-ehci".
5 - reg : should contain at least address and length of the standard EHCI 5 - reg : should contain at least address and length of the standard EHCI
6 register set for the device. Optional platform-dependent registers 6 register set for the device. Optional platform-dependent registers
7 (debug-port or other) can be also specified here, but only after 7 (debug-port or other) can be also specified here, but only after
@@ -27,7 +27,7 @@ Example (Sequoia 440EPx):
27 27
28Example (Allwinner sun4i A10 SoC): 28Example (Allwinner sun4i A10 SoC):
29 ehci0: usb@01c14000 { 29 ehci0: usb@01c14000 {
30 compatible = "allwinner,sun4i-a10-ehci", "usb-ehci"; 30 compatible = "allwinner,sun4i-a10-ehci", "generic-ehci";
31 reg = <0x01c14000 0x100>; 31 reg = <0x01c14000 0x100>;
32 interrupts = <39>; 32 interrupts = <39>;
33 clocks = <&ahb_gates 1>; 33 clocks = <&ahb_gates 1>;
diff --git a/drivers/usb/host/Kconfig b/drivers/usb/host/Kconfig
index e28cbe0e1f57..a9707da7da0b 100644
--- a/drivers/usb/host/Kconfig
+++ b/drivers/usb/host/Kconfig
@@ -255,7 +255,6 @@ config USB_EHCI_ATH79
255 255
256config USB_EHCI_HCD_PLATFORM 256config USB_EHCI_HCD_PLATFORM
257 tristate "Generic EHCI driver for a platform device" 257 tristate "Generic EHCI driver for a platform device"
258 depends on !PPC_OF
259 default n 258 default n
260 ---help--- 259 ---help---
261 Adds an EHCI host driver for a generic platform device, which 260 Adds an EHCI host driver for a generic platform device, which
diff --git a/drivers/usb/host/ehci-platform.c b/drivers/usb/host/ehci-platform.c
index 8fde6490234f..117873033d00 100644
--- a/drivers/usb/host/ehci-platform.c
+++ b/drivers/usb/host/ehci-platform.c
@@ -333,7 +333,7 @@ static int ehci_platform_resume(struct device *dev)
333static const struct of_device_id vt8500_ehci_ids[] = { 333static const struct of_device_id vt8500_ehci_ids[] = {
334 { .compatible = "via,vt8500-ehci", }, 334 { .compatible = "via,vt8500-ehci", },
335 { .compatible = "wm,prizm-ehci", }, 335 { .compatible = "wm,prizm-ehci", },
336 { .compatible = "usb-ehci", }, 336 { .compatible = "generic-ehci", },
337 {} 337 {}
338}; 338};
339MODULE_DEVICE_TABLE(of, vt8500_ehci_ids); 339MODULE_DEVICE_TABLE(of, vt8500_ehci_ids);