diff options
author | Jeeja KP <jeeja.kp@intel.com> | 2017-03-13 17:41:23 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2017-03-15 18:27:44 +0100 |
commit | 6914968b8203aef72edf936319c4d46c6d46401b (patch) | |
tree | 329eebb4bad2359cdef1f8f208bd8f6536e0bc1e /sound/soc/intel | |
parent | ASoC: Intel: Enable bytcht_nocodec machine driver (diff) | |
download | linux-6914968b8203aef72edf936319c4d46c6d46401b.tar.xz linux-6914968b8203aef72edf936319c4d46c6d46401b.zip |
ASoC: Intel: Skylake: Fix to delete DSP pipe after stopping pipe
DSP pipe needs to stopped before deleting the pipe. Currently check is
for pipe state > STARTED, which is incorrect. So changed to include
pipe state STARTED to stop the pipe if it started.
Signed-off-by: Jeeja KP <jeeja.kp@intel.com>
Acked-by: Vinod Koul <vinod.koul@intel.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/intel')
-rw-r--r-- | sound/soc/intel/skylake/skl-messages.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/intel/skylake/skl-messages.c b/sound/soc/intel/skylake/skl-messages.c index e66870474f10..ed576965cacc 100644 --- a/sound/soc/intel/skylake/skl-messages.c +++ b/sound/soc/intel/skylake/skl-messages.c @@ -1098,7 +1098,7 @@ int skl_delete_pipe(struct skl_sst *ctx, struct skl_pipe *pipe) dev_dbg(ctx->dev, "%s: pipe = %d\n", __func__, pipe->ppl_id); /* If pipe is started, do stop the pipe in FW. */ - if (pipe->state > SKL_PIPE_STARTED) { + if (pipe->state >= SKL_PIPE_STARTED) { ret = skl_set_pipe_state(ctx, pipe, PPL_PAUSED); if (ret < 0) { dev_err(ctx->dev, "Failed to stop pipeline\n"); |