usb: typec: fix an IS_ERR() vs NULL bug in hd3ss3220_probe()
authorDan Carpenter <dan.carpenter@oracle.com>
Fri, 11 Oct 2019 18:50:55 +0000 (21:50 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 15 Oct 2019 18:01:58 +0000 (20:01 +0200)
The device_get_named_child_node() function doesn't return error
pointers, it returns NULL on error.

Fixes: 1c48c759ef4b ("usb: typec: driver for TI HD3SS3220 USB Type-C DRP port controller")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Reviewed-by: Heikki Krogerus <heikki.krogerus@linux.intel.com>
Link: https://lore.kernel.org/r/20191011185055.GA20972@mwanda
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/typec/hd3ss3220.c

index 9715600..8afaf57 100644 (file)
@@ -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);