i2c: designware: Fix return value check in navi_amd_register_client()
authorWei Yongjun <weiyongjun1@huawei.com>
Wed, 7 Apr 2021 03:11:37 +0000 (03:11 +0000)
committerWolfram Sang <wsa@kernel.org>
Thu, 8 Apr 2021 20:47:48 +0000 (22:47 +0200)
commit3ab4ce2daf09b62e38934a7afe3e9fc3f3cbcdec
tree8ca7d6daa7c12eef6aabc362a2e9ce4c573505e3
parent010e32ab205bfee3a3e860d0366c1516c3e298f9
i2c: designware: Fix return value check in navi_amd_register_client()

In case of error, the function i2c_new_client_device() returns
ERR_PTR() and never returns NULL. The NULL test in the return
value check should be replaced with IS_ERR().

Fixes: 17631e8ca2d3 ("i2c: designware: Add driver support for AMD NAVI GPU")
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Acked-by: Jarkko Nikula <jarkko.nikula@linux.intel.com>
Signed-off-by: Wolfram Sang <wsa@kernel.org>
drivers/i2c/busses/i2c-designware-pcidrv.c