forked from luck/tmp_suning_uos_patched
phy: renesas: rcar-gen3-usb2: exit if request_irq() failed
To avoid unexpected behaviors, it's better to exit if request_irq() failed. Suggested-by: Vinod Koul <vkoul@kernel.org> Signed-off-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com> Link: https://lore.kernel.org/r/1594986297-12434-3-git-send-email-yoshihiro.shimoda.uh@renesas.com Signed-off-by: Vinod Koul <vkoul@kernel.org>
This commit is contained in:
parent
08b0ad375c
commit
b59aeb1a59
|
@ -419,8 +419,10 @@ static int rcar_gen3_phy_usb2_init(struct phy *p)
|
|||
INIT_WORK(&channel->work, rcar_gen3_phy_usb2_work);
|
||||
ret = request_irq(channel->irq, rcar_gen3_phy_usb2_irq,
|
||||
IRQF_SHARED, dev_name(channel->dev), channel);
|
||||
if (ret < 0)
|
||||
if (ret < 0) {
|
||||
dev_err(channel->dev, "No irq handler (%d)\n", channel->irq);
|
||||
return ret;
|
||||
}
|
||||
}
|
||||
|
||||
/* Initialize USB2 part */
|
||||
|
|
Loading…
Reference in New Issue
Block a user