Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 325831
b: refs/heads/master
c: aece389
h: refs/heads/master
i:
  325829: acdc7f1
  325827: 59a774f
  325823: 03fb2b4
v: v3
  • Loading branch information
Julia Lawall authored and Greg Kroah-Hartman committed Aug 15, 2012
1 parent 2a14648 commit 36d15d3
Show file tree
Hide file tree
Showing 2 changed files with 4 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: ec03ad85486e94f133a721a5d6fd3aaef1176c46
refs/heads/master: aece389ea58ff507801ce260a84905bbe2ab7948
4 changes: 3 additions & 1 deletion trunk/drivers/usb/host/ohci-platform.c
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,10 @@ static int __devinit ohci_platform_probe(struct platform_device *dev)
}

hcd->regs = ioremap_nocache(hcd->rsrc_start, hcd->rsrc_len);
if (!hcd->regs)
if (!hcd->regs) {
err = -ENOMEM;
goto err_release_region;
}
err = usb_add_hcd(hcd, irq, IRQF_SHARED);
if (err)
goto err_iounmap;
Expand Down

0 comments on commit 36d15d3

Please sign in to comment.