From: Srinivas Kandagatla Date: Tue, 26 Jun 2018 09:20:15 +0000 (+0100) Subject: ASoC: qdsp6: q6routing: add proper error check X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=972562f7aaaa261ec6e1ac14fed0c5bdd0dfb1cb;p=openwrt%2Fstaging%2Fblogic.git ASoC: qdsp6: q6routing: add proper error check q6adm_open can return error pointer or a null in error cases. Fix the return handling. Signed-off-by: Srinivas Kandagatla Acked-by: Niklas Cassel Signed-off-by: Mark Brown --- diff --git a/sound/soc/qcom/qdsp6/q6routing.c b/sound/soc/qcom/qdsp6/q6routing.c index ab696bf8d1d3..c80fdbc2442e 100644 --- a/sound/soc/qcom/qdsp6/q6routing.c +++ b/sound/soc/qcom/qdsp6/q6routing.c @@ -310,7 +310,7 @@ int q6routing_stream_open(int fedai_id, int perf_mode, session->channels, topology, perf_mode, session->bits_per_sample, 0, 0); - if (!copp) { + if (IS_ERR_OR_NULL(copp)) { mutex_unlock(&routing_data->lock); return -EINVAL; }