]> git.baikalelectronics.ru Git - kernel.git/commit
usb: typec: tps6598x: Fix return value check in tps6598x_probe()
authorWei Yongjun <weiyongjun1@huawei.com>
Mon, 8 Mar 2021 09:48:41 +0000 (09:48 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 10 Mar 2021 08:37:18 +0000 (09:37 +0100)
commitc3f05a596c5ee2727e1f0daff320306f104dadb5
tree76652eb8e2df4c076de3e8bb79d1d0286f520890
parent10fef04c35fcdca3aa518cfa8c26f2593f065faa
usb: typec: tps6598x: Fix return value check in tps6598x_probe()

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: e0893791758f ("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>
drivers/usb/typec/tps6598x.c