X-Git-Url: http://git.ozo.com/?a=blobdiff_plain;f=target%2Flinux%2Far71xx%2Ffiles%2Fdrivers%2Fusb%2Fhost%2Fohci-ar71xx.c;h=48457e013b769287d0d69131cc83edb9dd2a45e5;hb=9e412c9b2e7bbb65bd62429adee90fd8c6f0831c;hp=30fb9e0395e104a655c7ea5802c21bf26806e567;hpb=59266b346624827934293c5a639b4560de9018b5;p=openwrt-10.03%2F.git diff --git a/target/linux/ar71xx/files/drivers/usb/host/ohci-ar71xx.c b/target/linux/ar71xx/files/drivers/usb/host/ohci-ar71xx.c index 30fb9e039..48457e013 100644 --- a/target/linux/ar71xx/files/drivers/usb/host/ohci-ar71xx.c +++ b/target/linux/ar71xx/files/drivers/usb/host/ohci-ar71xx.c @@ -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; }