aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/host
diff options
context:
space:
mode:
authorHans de Goede <hdegoede@redhat.com>2014-02-11 11:35:29 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-02-11 16:39:54 -0500
commit915974c34ee056be918b7ea287a870766a0db6ba (patch)
tree03ae370b9fe043220cbb3451a9a94681e85b7444 /drivers/usb/host
parentce149c30b9f89d0c9addd1d71ccdb57c1051553b (diff)
ehci-platform: Change compatible string from usb-ehci to generic-ehci
The initial versions of the devicetree enablement patches for ehci-platform used "ehci-platform" as compatible string. However this was disliked by various reviewers because the platform bus is a Linux invention and devicetree is supposed to be OS agnostic. After much discussion I gave up, added a: "depends on !PPC_OF" to Kconfig to avoid a known conflict with PPC-OF platforms and went with the generic usb-ehci as requested. In retro-spect I should have chosen something different, the dts files for many existing boards already claim to be compatible with "usb-ehci", ie they have: compatible = "ti,ehci-omap", "usb-ehci"; In theory this should not be a problem since the "ti,ehci-omap" entry takes presedence, but in practice using a conflicting compatible string is an issue, because it makes which driver gets used depend on driver registration order. This patch changes the compatible string claimed by ehci-platform to "generic-ehci", avoiding the driver registration / module loading ordering problems, and removes the "depends on !PPC_OF" workaround. Signed-off-by: Hans de Goede <hdegoede@redhat.com> Acked-by: Alan Stern <stern@rowland.harvard.edu> Tested-by: Kevin Hilman <khilman@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/host')
-rw-r--r--drivers/usb/host/Kconfig1
-rw-r--r--drivers/usb/host/ehci-platform.c2
2 files changed, 1 insertions, 2 deletions
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);