Skip to content

Commit

Permalink
usb: typec: anx7411: Fix error return code in anx7411_i2c_probe()
Browse files Browse the repository at this point in the history
Add mising error return code when failed to get interrupt or failed
to register psy.

Fixes: fe6d8a9 ("usb: typec: anx7411: Add Analogix PD ANX7411 support")
Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
Link: https://lore.kernel.org/r/20220721071201.269344-3-yangyingliang@huawei.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Yang Yingliang authored and Greg Kroah-Hartman committed Jul 27, 2022
1 parent 5cda657 commit d183a57
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion drivers/usb/typec/anx7411.c
Original file line number Diff line number Diff line change
Expand Up @@ -1483,12 +1483,14 @@ static int anx7411_i2c_probe(struct i2c_client *client,

if (!plat->intp_irq) {
dev_err(dev, "fail to get interrupt IRQ\n");
ret = -EINVAL;
goto free_typec_port;
}

plat->dev = dev;
plat->psy_online = ANX7411_PSY_OFFLINE;
if (anx7411_psy_register(plat)) {
ret = anx7411_psy_register(plat);
if (ret) {
dev_err(dev, "register psy\n");
goto free_typec_port;
}
Expand Down

0 comments on commit d183a57

Please sign in to comment.