Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 325830
b: refs/heads/master
c: ec03ad8
h: refs/heads/master
v: v3
  • Loading branch information
Julia Lawall authored and Greg Kroah-Hartman committed Aug 15, 2012
1 parent acdc7f1 commit 2a14648
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: 47282502933e94a2e443fab36c412191fc3ed6ce
refs/heads/master: ec03ad85486e94f133a721a5d6fd3aaef1176c46
4 changes: 3 additions & 1 deletion trunk/drivers/usb/host/ehci-platform.c
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,10 @@ static int __devinit ehci_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 2a14648

Please sign in to comment.