Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 188419
b: refs/heads/master
c: 26e4248
h: refs/heads/master
i:
  188417: 7903b1f
  188415: 57c45dd
v: v3
  • Loading branch information
Suman Anna authored and Tony Lindgren committed Mar 11, 2010
1 parent 54fd3f3 commit 67be187
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 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: 21b90340207d324f92111e25ead1752533eeb9ca
refs/heads/master: 26e4248359c6bf2da4a07767f6e12f1df426ab0a
12 changes: 6 additions & 6 deletions trunk/arch/arm/mach-omap2/mailbox.c
Original file line number Diff line number Diff line change
Expand Up @@ -430,19 +430,19 @@ static int __devinit omap2_mbox_probe(struct platform_device *pdev)
if (unlikely(!res)) {
dev_err(&pdev->dev, "invalid irq resource\n");
ret = -ENODEV;
goto err_iva1;
omap_mbox_unregister(&mbox_dsp_info);
goto err_dsp;
}
mbox_iva_info.irq = res->start;
ret = omap_mbox_register(&pdev->dev, &mbox_iva_info);
if (ret)
goto err_iva1;
if (ret) {
omap_mbox_unregister(&mbox_dsp_info);
goto err_dsp;
}
}
#endif
return 0;

err_iva1:
omap_mbox_unregister(&mbox_dsp_info);

err_dsp:
iounmap(mbox_base);
return ret;
Expand Down

0 comments on commit 67be187

Please sign in to comment.