Commit c8dd192b authored by Dan Carpenter's avatar Dan Carpenter Committed by Greg Kroah-Hartman
Browse files

usb: typec: fix an IS_ERR() vs NULL bug in hd3ss3220_probe()



The device_get_named_child_node() function doesn't return error
pointers, it returns NULL on error.

Fixes: 1c48c759 ("usb: typec: driver for TI HD3SS3220 USB Type-C DRP port controller")
Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Reviewed-by: default avatarHeikki Krogerus <heikki.krogerus@linux.intel.com>
Link: https://lore.kernel.org/r/20191011185055.GA20972@mwanda


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 67f19580
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -172,8 +172,8 @@ static int hd3ss3220_probe(struct i2c_client *client,
	hd3ss3220_set_source_pref(hd3ss3220,
				  HD3SS3220_REG_GEN_CTRL_SRC_PREF_DRP_DEFAULT);
	connector = device_get_named_child_node(hd3ss3220->dev, "connector");
	if (IS_ERR(connector))
		return PTR_ERR(connector);
	if (!connector)
		return -ENODEV;

	hd3ss3220->role_sw = fwnode_usb_role_switch_get(connector);
	fwnode_handle_put(connector);