ASoC: rt1316: Fix return value check in rt1316_sdw_probe()
authorWei Yongjun <weiyongjun1@huawei.com>
Wed, 3 Mar 2021 06:40:41 +0000 (06:40 +0000)
committerMark Brown <broonie@kernel.org>
Wed, 10 Mar 2021 13:13:20 +0000 (13:13 +0000)
commit3d01f5ee19c37c2dcaa937f060014dfd46a8ab2f
treea5eae56d412da858e50d671d1c6875d0f44835b4
parent5d90fef6809138f0d31271b06940950896671677
ASoC: rt1316: Fix return value check in rt1316_sdw_probe()

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

Fixes: a262057df513 ("ASoC: rt1316: Add RT1316 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/20210303064041.898281-1-weiyongjun1@huawei.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/codecs/rt1316-sdw.c