diff options
author | Dan Carpenter <[email protected]> | 2018-09-10 11:40:48 +0300 |
---|---|---|
committer | Mark Brown <[email protected]> | 2018-09-10 11:46:39 +0100 |
commit | 0712e0288b7602efbde95d95bca4c651ccad01b8 (patch) | |
tree | 05b8be1f2fc93b7910fd72f4b4d34c9172c95b79 | |
parent | 2e558a8127de7b2ed3302f9adcf332ba3feeadb2 (diff) |
ASoC: qdsp6: q6asm-dai: clean up a return
Smatch complains that if both "psubstream" and "csubstream" are NULL
then "ret" is uninitialized. That probably can't happen, but it's
cleaner to just return zero anyway so let's do that.
Signed-off-by: Dan Carpenter <[email protected]>
Acked-by: Srinivas Kandagatla <[email protected]>
Signed-off-by: Mark Brown <[email protected]>
-rw-r--r-- | sound/soc/qcom/qdsp6/q6asm-dai.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/qcom/qdsp6/q6asm-dai.c b/sound/soc/qcom/qdsp6/q6asm-dai.c index 9db9a2944ef2..c75fab38905d 100644 --- a/sound/soc/qcom/qdsp6/q6asm-dai.c +++ b/sound/soc/qcom/qdsp6/q6asm-dai.c @@ -493,7 +493,7 @@ static int q6asm_dai_pcm_new(struct snd_soc_pcm_runtime *rtd) } } - return ret; + return 0; } static void q6asm_dai_pcm_free(struct snd_pcm *pcm) |