diff options
author | Vivek Gautam <gautam.vivek@samsung.com> | 2013-01-24 19:15:29 +0530 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-01-24 14:03:56 -0800 |
commit | 6e2477777c8f1d4807437f7de11447319d426f8c (patch) | |
tree | 2fbef3a515da9dca11bc926aa6ce080cf6d87d1d /drivers/usb/host/ehci-s5p.c | |
parent | bdb6bc06f7d694652c12fb8779bb031c2f220823 (diff) | |
download | linux-6e2477777c8f1d4807437f7de11447319d426f8c.tar.gz linux-6e2477777c8f1d4807437f7de11447319d426f8c.tar.bz2 linux-6e2477777c8f1d4807437f7de11447319d426f8c.zip |
usb: ehci-s5p/ohci-exynos: Fix compatible strings for the device
Using specific chip in compatible strings. Newer SOCs can claim
device by using older string in the compatible list.
Signed-off-by: Vivek Gautam <gautam.vivek@samsung.com>
Acked-by: Grant Likely <grant.likely@secretlab.ca>
Reviewed-by: Doug Anderson <dianders@chromium.org>
Acked-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/host/ehci-s5p.c')
-rw-r--r-- | drivers/usb/host/ehci-s5p.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/host/ehci-s5p.c b/drivers/usb/host/ehci-s5p.c index 319dcfaa8735..f18e6ac081aa 100644 --- a/drivers/usb/host/ehci-s5p.c +++ b/drivers/usb/host/ehci-s5p.c @@ -266,7 +266,7 @@ static const struct dev_pm_ops s5p_ehci_pm_ops = { #ifdef CONFIG_OF static const struct of_device_id exynos_ehci_match[] = { - { .compatible = "samsung,exynos-ehci" }, + { .compatible = "samsung,exynos4210-ehci" }, {}, }; MODULE_DEVICE_TABLE(of, exynos_ehci_match); |