mfd: pm8008: Fix return value check in pm8008_probe()
authorYang Yingliang <yangyingliang@huawei.com>
Fri, 25 Nov 2022 07:36:26 +0000 (15:36 +0800)
committerLee Jones <lee@kernel.org>
Thu, 8 Dec 2022 14:41:29 +0000 (14:41 +0000)
commit14f8c55d48e02157519fbcb3a5de557abd8a06e2
treea57101b08118f4a071d795186fdaa35270dc71b6
parentcb83cb0dfa821b9c91cc9b2e3473f0ea42e11461
mfd: pm8008: Fix return value check in pm8008_probe()

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

Fixes: 6b149f3310a4 ("mfd: pm8008: Add driver for QCOM PM8008 PMIC")
Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
Reviewed-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Acked-by: Guru Das Srinagesh <gurus@codeaurora.org>
Signed-off-by: Lee Jones <lee@kernel.org>
Link: https://lore.kernel.org/r/20221125073626.1868229-1-yangyingliang@huawei.com
drivers/mfd/qcom-pm8008.c