Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 361249
b: refs/heads/master
c: 862421d
h: refs/heads/master
i:
  361247: 689fbb4
v: v3
  • Loading branch information
Sachin Kamat authored and Felipe Balbi committed Mar 4, 2013
1 parent 2bc0931 commit bb60b3a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 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: a40070410329fb704aedf9451732ffb92a3fe39f
refs/heads/master: 862421da0d82a3c35aa89e040a533f76d24c62c4
8 changes: 3 additions & 5 deletions trunk/drivers/usb/phy/omap-usb3.c
Original file line number Diff line number Diff line change
Expand Up @@ -212,11 +212,9 @@ static int omap_usb3_probe(struct platform_device *pdev)
}

res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "pll_ctrl");
phy->pll_ctrl_base = devm_request_and_ioremap(&pdev->dev, res);
if (!phy->pll_ctrl_base) {
dev_err(&pdev->dev, "ioremap of pll_ctrl failed\n");
return -ENOMEM;
}
phy->pll_ctrl_base = devm_ioremap_resource(&pdev->dev, res);
if (IS_ERR(phy->pll_ctrl_base))
return PTR_ERR(phy->pll_ctrl_base);

phy->dev = &pdev->dev;

Expand Down

0 comments on commit bb60b3a

Please sign in to comment.