Skip to content

Commit

Permalink
OMAP: mailbox: remove unreachable return
Browse files Browse the repository at this point in the history
Remove unreachable return statement.

Signed-off-by: Omar Ramirez Luna <omar.ramirez@ti.com>
Acked-by: Benoit Cousson <b-cousson@ti.com>
Acked-by: Hiroshi Doyu <hiroshi.doyu@nokia.com>
  • Loading branch information
Omar Ramirez Luna authored and Hari Kanigeri committed Dec 2, 2010
1 parent 5825630 commit 5d78373
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions arch/arm/mach-omap2/mailbox.c
Original file line number Diff line number Diff line change
Expand Up @@ -432,9 +432,8 @@ static int __devinit omap2_mbox_probe(struct platform_device *pdev)
iounmap(mbox_base);
return ret;
}
return 0;

return ret;
return 0;
}

static int __devexit omap2_mbox_remove(struct platform_device *pdev)
Expand Down

0 comments on commit 5d78373

Please sign in to comment.