]> git.baikalelectronics.ru Git - kernel.git/commit
ASoC: rt715: fix return value check in rt715_sdw_probe()
authorWei Yongjun <weiyongjun1@huawei.com>
Fri, 17 Jan 2020 02:41:49 +0000 (02:41 +0000)
committerMark Brown <broonie@kernel.org>
Fri, 17 Jan 2020 15:31:16 +0000 (15:31 +0000)
commit212258cec5d7be244b267f03e728bbe03be666b4
tree0e4c67f25af49bfe0984aeea05cb19c719673eab
parent4ff04caac7e1569458083cfe5f4402758d6befd9
ASoC: rt715: fix return value check in rt715_sdw_probe()

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

Fixes: 72b650195b70 ("ASoC: rt715: add RT715 codec driver")
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Link: https://lore.kernel.org/r/20200117024149.75515-1-weiyongjun1@huawei.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/codecs/rt715-sdw.c