usb: typec: anx7411: Fix error return code in anx7411_i2c_probe()
Add mising error return code when failed to get interrupt or failed
to register psy.
Fixes: fe6d8a9c8e
("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>
This commit is contained in:
parent
5cda657679
commit
d183a57cad
|
@ -1483,12 +1483,14 @@ static int anx7411_i2c_probe(struct i2c_client *client,
|
||||||
|
|
||||||
if (!plat->intp_irq) {
|
if (!plat->intp_irq) {
|
||||||
dev_err(dev, "fail to get interrupt IRQ\n");
|
dev_err(dev, "fail to get interrupt IRQ\n");
|
||||||
|
ret = -EINVAL;
|
||||||
goto free_typec_port;
|
goto free_typec_port;
|
||||||
}
|
}
|
||||||
|
|
||||||
plat->dev = dev;
|
plat->dev = dev;
|
||||||
plat->psy_online = ANX7411_PSY_OFFLINE;
|
plat->psy_online = ANX7411_PSY_OFFLINE;
|
||||||
if (anx7411_psy_register(plat)) {
|
ret = anx7411_psy_register(plat);
|
||||||
|
if (ret) {
|
||||||
dev_err(dev, "register psy\n");
|
dev_err(dev, "register psy\n");
|
||||||
goto free_typec_port;
|
goto free_typec_port;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue