usb: musb: musb_dsps: Simplify return statement

Replace redundant variable use in return statement.

Signed-off-by: Saurabh Karajgaonkar <skarajga@visteon.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Saurabh Karajgaonkar 2015-08-04 14:02:28 +00:00 committed by Greg Kroah-Hartman
parent a9c5d8feb9
commit e94a7369a9
1 changed files with 1 additions and 5 deletions

View File

@ -482,11 +482,7 @@ static int dsps_musb_init(struct musb *musb)
dsps_writeb(musb->mregs, MUSB_BABBLE_CTL, val);
}
ret = dsps_musb_dbg_init(musb, glue);
if (ret)
return ret;
return 0;
return dsps_musb_dbg_init(musb, glue);
}
static int dsps_musb_exit(struct musb *musb)