]> git.baikalelectronics.ru Git - kernel.git/commit
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)
commit5c1b39901803661c37eefe2d536f29270c069d43
treea5eae56d412da858e50d671d1c6875d0f44835b4
parent6e4ad274396f72aa6c6a4e5fd22249a5ba4baf81
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