Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 364743
b: refs/heads/master
c: a90199b
h: refs/heads/master
i:
  364741: 544c8a5
  364739: d4b438c
  364735: 8697e02
v: v3
  • Loading branch information
Felipe Balbi committed Mar 18, 2013
1 parent 579b9f7 commit c74381d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 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: f4f5ba5e7d9e087f044fe87f5a5421761274aa48
refs/heads/master: a90199bb947856c24d7bf78845d24f802e09db0a
7 changes: 6 additions & 1 deletion trunk/drivers/usb/musb/omap2430.c
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,12 @@ static int omap2430_musb_init(struct musb *musb)
else
musb->xceiv = devm_usb_get_phy_dev(dev, 0);

if (IS_ERR_OR_NULL(musb->xceiv)) {
if (IS_ERR(musb->xceiv)) {
status = PTR_ERR(musb->xceiv);

if (status == -ENXIO)
return status;

pr_err("HS USB OTG: no transceiver configured\n");
return -EPROBE_DEFER;
}
Expand Down

0 comments on commit c74381d

Please sign in to comment.