From: Vivek Gautam Date: Thu, 24 Jan 2013 13:45:30 +0000 (+0530) Subject: usb: dwc3: exynos: fix compatible strings for the device X-Git-Tag: v3.9-rc1~126^2~44^2~9 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=fe29db8fb22f5aa67af4bf30b85a0451c989a88b;p=linux.git 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 Acked-by: Grant Likely Reviewed-by: Doug Anderson Signed-off-by: Felipe Balbi --- diff --git a/drivers/usb/dwc3/dwc3-exynos.c b/drivers/usb/dwc3/dwc3-exynos.c index 90e05e60c3fe..1e955517c6fa 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);