Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 127226
b: refs/heads/master
c: 74c71eb
h: refs/heads/master
v: v3
  • Loading branch information
Kay Sievers authored and Greg Kroah-Hartman committed Jan 7, 2009
1 parent 75ad6cf commit 1caebc3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 427c4f333474f5447f62387c1fb060e586c1a781
refs/heads/master: 74c71ebd8d7c7a513022851a02bb52b9fa7e0dcb
6 changes: 3 additions & 3 deletions trunk/drivers/usb/host/oxu210hp-hcd.c
Original file line number Diff line number Diff line change
Expand Up @@ -3825,7 +3825,7 @@ static int oxu_drv_probe(struct platform_device *pdev)
res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
if (!res) {
dev_err(&pdev->dev,
"no IRQ! Check %s setup!\n", pdev->dev.bus_id);
"no IRQ! Check %s setup!\n", dev_name(&pdev->dev));
return -ENODEV;
}
irq = res->start;
Expand All @@ -3834,7 +3834,7 @@ static int oxu_drv_probe(struct platform_device *pdev)
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
if (!res) {
dev_err(&pdev->dev, "no registers address! Check %s setup!\n",
pdev->dev.bus_id);
dev_name(&pdev->dev));
return -ENODEV;
}
memstart = res->start;
Expand Down Expand Up @@ -3893,7 +3893,7 @@ static int oxu_drv_probe(struct platform_device *pdev)
error_ioremap:
release_mem_region(memstart, memlen);

dev_err(&pdev->dev, "init %s fail, %d\n", pdev->dev.bus_id, ret);
dev_err(&pdev->dev, "init %s fail, %d\n", dev_name(&pdev->dev), ret);
return ret;
}

Expand Down

0 comments on commit 1caebc3

Please sign in to comment.