diff options
author | Vivek Gautam <gautam.vivek@samsung.com> | 2013-01-24 13:45:30 (GMT) |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2013-01-25 07:04:44 (GMT) |
commit | fe29db8fb22f5aa67af4bf30b85a0451c989a88b (patch) | |
tree | 7fb4c5a5649daf75c9392123ed076707ede652c2 /drivers/usb/dwc3 | |
parent | 1a947746dbe1486d0e305ab512ddf085b7874cb3 (diff) | |
download | linux-fe29db8fb22f5aa67af4bf30b85a0451c989a88b.tar.xz |
usb: dwc3: 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>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/dwc3')
-rw-r--r-- | drivers/usb/dwc3/dwc3-exynos.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/dwc3/dwc3-exynos.c b/drivers/usb/dwc3/dwc3-exynos.c index 90e05e6..1e95551 100644 --- a/drivers/usb/dwc3/dwc3-exynos.c +++ b/drivers/usb/dwc3/dwc3-exynos.c @@ -183,7 +183,7 @@ static int dwc3_exynos_remove(struct platform_device *pdev) #ifdef CONFIG_OF static const struct of_device_id exynos_dwc3_match[] = { - { .compatible = "samsung,exynos-dwc3" }, + { .compatible = "samsung,exynos5250-dwusb3" }, {}, }; MODULE_DEVICE_TABLE(of, exynos_dwc3_match); |