summaryrefslogtreecommitdiff
path: root/target/linux/ar71xx/files/drivers/usb/host/ehci-ar71xx.c
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2009-05-05 19:21:39 +0000
committerGabor Juhos <juhosg@openwrt.org>2009-05-05 19:21:39 +0000
commited861cf5e9e7af0e25d6562baf5ebe6ef9edb6e1 (patch)
treef3961749d7642fc6ec2147a7221cfb17a79c6837 /target/linux/ar71xx/files/drivers/usb/host/ehci-ar71xx.c
parent744a09fa4bb2506f0169b99a1a7af2519ab7c14c (diff)
downloadmtk-20170518-ed861cf5e9e7af0e25d6562baf5ebe6ef9edb6e1.zip
mtk-20170518-ed861cf5e9e7af0e25d6562baf5ebe6ef9edb6e1.tar.gz
mtk-20170518-ed861cf5e9e7af0e25d6562baf5ebe6ef9edb6e1.tar.bz2
use dev_name() instead of bus_id in ag71xx, ohci-ar71xx, ehci-ar71xx drivers
SVN-Revision: 15629
Diffstat (limited to 'target/linux/ar71xx/files/drivers/usb/host/ehci-ar71xx.c')
-rw-r--r--target/linux/ar71xx/files/drivers/usb/host/ehci-ar71xx.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/target/linux/ar71xx/files/drivers/usb/host/ehci-ar71xx.c b/target/linux/ar71xx/files/drivers/usb/host/ehci-ar71xx.c
index 1c05a64..5b929e1 100644
--- a/target/linux/ar71xx/files/drivers/usb/host/ehci-ar71xx.c
+++ b/target/linux/ar71xx/files/drivers/usb/host/ehci-ar71xx.c
@@ -79,7 +79,7 @@ static int ehci_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;
@@ -87,11 +87,11 @@ static int ehci_ar71xx_probe(const struct hc_driver *driver,
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));
return -ENODEV;
}
- 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;
@@ -205,7 +205,7 @@ static int ehci_ar71xx_driver_probe(struct platform_device *pdev)
pdata = pdev->dev.platform_data;
if (!pdata) {
dev_err(&pdev->dev, "no platform data specified for %s\n",
- pdev->dev.bus_id);
+ dev_name(&pdev->dev));
return -ENODEV;
}