From: Christophe JAILLET Date: Sat, 6 Jan 2018 20:18:24 +0000 (+0100) Subject: ASoC: Intel: sst: Fix the return value of 'sst_send_byte_stream_mrfld()' X-Git-Tag: v5.15~9442^2~2^5~27 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=eaadb1caa966a91128297b754e90b7c92b350a00;p=platform%2Fkernel%2Flinux-starfive.git ASoC: Intel: sst: Fix the return value of 'sst_send_byte_stream_mrfld()' In some error handling paths, an error code is assiegned to 'ret'. However, the function always return 0. Fix it and return the error code if such an error paths is taken. Fixes: 3d9ff34622ba ("ASoC: Intel: sst: add stream operations") Signed-off-by: Christophe JAILLET Signed-off-by: Mark Brown --- diff --git a/sound/soc/intel/atom/sst/sst_stream.c b/sound/soc/intel/atom/sst/sst_stream.c index 65e257b..20f5066 100644 --- a/sound/soc/intel/atom/sst/sst_stream.c +++ b/sound/soc/intel/atom/sst/sst_stream.c @@ -220,7 +220,7 @@ int sst_send_byte_stream_mrfld(struct intel_sst_drv *sst_drv_ctx, sst_free_block(sst_drv_ctx, block); out: test_and_clear_bit(pvt_id, &sst_drv_ctx->pvt_id); - return 0; + return ret; } /*