mirror of
https://github.com/torvalds/linux.git
synced 2024-11-13 07:31:45 +00:00
mailbox: platform-mhu: Remove redundant dev_err()
There is no need to call the dev_err() function directly to print a custom message when handling an error from platform_get_irq() function as it is going to display an appropriate error message in case of a failure. Signed-off-by: Ruan Jinjie <ruanjinjie@huawei.com> Signed-off-by: Jassi Brar <jaswinder.singh@linaro.org>
This commit is contained in:
parent
ad495a52d6
commit
65d9aa3191
@ -135,10 +135,8 @@ static int platform_mhu_probe(struct platform_device *pdev)
|
||||
for (i = 0; i < MHU_CHANS; i++) {
|
||||
mhu->chan[i].con_priv = &mhu->mlink[i];
|
||||
mhu->mlink[i].irq = platform_get_irq(pdev, i);
|
||||
if (mhu->mlink[i].irq < 0) {
|
||||
dev_err(dev, "failed to get irq%d\n", i);
|
||||
if (mhu->mlink[i].irq < 0)
|
||||
return mhu->mlink[i].irq;
|
||||
}
|
||||
mhu->mlink[i].rx_reg = mhu->base + platform_mhu_reg[i];
|
||||
mhu->mlink[i].tx_reg = mhu->mlink[i].rx_reg + TX_REG_OFFSET;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user