mirror of
https://github.com/hardkernel/linux.git
synced 2026-03-25 20:10:23 +09:00
usb: typec: tps6598x: Fix return value check in tps6598x_probe()
[ Upstream commit604c75893a] In case of error, the function device_get_named_child_node() returns NULL pointer not ERR_PTR(). The IS_ERR() test in the return value check should be replaced with NULL test. Fixes:18a6c866bb("usb: typec: tps6598x: Add USB role switching logic") Reported-by: Hulk Robot <hulkci@huawei.com> Reviewed-by: Heikki Krogerus <heikki.krogerus@linux.intel.com> Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com> Link: https://lore.kernel.org/r/20210308094841.3587751-1-weiyongjun1@huawei.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
2c80fa2cbf
commit
72fa4c30ac
@@ -515,8 +515,8 @@ static int tps6598x_probe(struct i2c_client *client)
|
||||
return ret;
|
||||
|
||||
fwnode = device_get_named_child_node(&client->dev, "connector");
|
||||
if (IS_ERR(fwnode))
|
||||
return PTR_ERR(fwnode);
|
||||
if (!fwnode)
|
||||
return -ENODEV;
|
||||
|
||||
tps->role_sw = fwnode_usb_role_switch_get(fwnode);
|
||||
if (IS_ERR(tps->role_sw)) {
|
||||
|
||||
Reference in New Issue
Block a user