ASoC: rt715-sdca: Fix return value check in rt715_sdca_sdw_probe()
authorWei Yongjun <weiyongjun1@huawei.com>
Tue, 9 Mar 2021 13:14:58 +0000 (13:14 +0000)
committerMark Brown <broonie@kernel.org>
Wed, 10 Mar 2021 13:14:32 +0000 (13:14 +0000)
commitd3223608c5bcd938bcf751702ebf4a8b130976da
treeb1a06458d7fdb083e5a5654c92daf540ba37ff37
parent32432b8eea2d1bc05d1175f63bf5cd6d2a50c917
ASoC: rt715-sdca: Fix return value check in rt715_sdca_sdw_probe()

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

Fixes: 393c52d2d109 ("ASoC: rt715-sdca: Add RT715 sdca vendor-specific driver")
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Link: https://lore.kernel.org/r/20210309131458.1884899-1-weiyongjun1@huawei.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/codecs/rt715-sdca-sdw.c