|
|
@@ -50,9 +50,8 @@ struct exynos_ehci_hcd {
|
|
|
|
|
|
#define to_exynos_ehci(hcd) (struct exynos_ehci_hcd *)(hcd_to_ehci(hcd)->priv)
|
|
|
|
|
|
-static void exynos_setup_vbus_gpio(struct platform_device *pdev)
|
|
|
+static void exynos_setup_vbus_gpio(struct device *dev)
|
|
|
{
|
|
|
- struct device *dev = &pdev->dev;
|
|
|
int err;
|
|
|
int gpio;
|
|
|
|
|
|
@@ -88,7 +87,7 @@ static int exynos_ehci_probe(struct platform_device *pdev)
|
|
|
if (err)
|
|
|
return err;
|
|
|
|
|
|
- exynos_setup_vbus_gpio(pdev);
|
|
|
+ exynos_setup_vbus_gpio(&pdev->dev);
|
|
|
|
|
|
hcd = usb_create_hcd(&exynos_ehci_hc_driver,
|
|
|
&pdev->dev, dev_name(&pdev->dev));
|