OMAP: mailbox: remove unreachable return

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>
This commit is contained in:
Omar Ramirez Luna 2010-12-01 14:15:08 -06:00 committed by Hari Kanigeri
parent 582563074a
commit 5d783731c6

View file

@ -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)