ar71xx: setup wdt_clock for AR913X to avoid a kernel bug
[openwrt.git] / target / linux / ar71xx / files / drivers / usb / host / ohci-ar71xx.c
index 30fb9e0..1ab33f3 100644 (file)
@@ -30,19 +30,19 @@ static int usb_hcd_ar71xx_probe(const struct hc_driver *driver,
        res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
        if (!res) {
                dev_dbg(&pdev->dev, "no IRQ specified for %s\n",
-                       pdev->dev.bus_id);
+                       dev_name(&pdev->dev));
                return -ENODEV;
        }
        irq = res->start;
 
-       hcd = usb_create_hcd(driver, &pdev->dev, pdev->dev.bus_id);
+       hcd = usb_create_hcd(driver, &pdev->dev, dev_name(&pdev->dev));
        if (!hcd)
                return -ENOMEM;
 
        res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
        if (!res) {
                dev_dbg(&pdev->dev, "no base address specified for %s\n",
-                       pdev->dev.bus_id);
+                       dev_name(&pdev->dev));
                ret = -ENODEV;
                goto err_put_hcd;
        }
@@ -70,11 +70,11 @@ static int usb_hcd_ar71xx_probe(const struct hc_driver *driver,
 
        return 0;
 
- err_stop_hcd:
+err_stop_hcd:
        iounmap(hcd->regs);
- err_release_region:
+err_release_region:
        release_mem_region(hcd->rsrc_start, hcd->rsrc_len);
- err_put_hcd:
+err_put_hcd:
        usb_put_hcd(hcd);
        return ret;
 }
@@ -102,7 +102,7 @@ static int __devinit ohci_ar71xx_start(struct usb_hcd *hcd)
 
        return 0;
 
- err:
+err:
        ohci_stop(hcd);
        return ret;
 }
This page took 0.026325 seconds and 4 git commands to generate.