diff options
author | Jeeja KP <jeeja.kp@intel.com> | 2016-06-03 12:59:35 (GMT) |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2016-06-07 13:19:11 (GMT) |
commit | 353f72aa77581926c0634fffe168f206435a8fc6 (patch) | |
tree | e7c48ef6b5972203f55cd6aee18cbe2857d4b164 /sound/soc/intel/skylake/skl-messages.c | |
parent | 2004432f946e985fe98b67d515c52d69747016f9 (diff) | |
download | linux-353f72aa77581926c0634fffe168f206435a8fc6.tar.xz |
ASoC: Intel: Skylake: Set the pipe state to paused when paused
When pipe is stopped/Paused, set the pipe state to paused instead
of created.
Signed-off-by: Jeeja KP <jeeja.kp@intel.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/intel/skylake/skl-messages.c')
-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 c682403..07d2a73 100644 --- a/sound/soc/intel/skylake/skl-messages.c +++ b/sound/soc/intel/skylake/skl-messages.c @@ -1125,7 +1125,7 @@ int skl_stop_pipe(struct skl_sst *ctx, struct skl_pipe *pipe) return ret; } - pipe->state = SKL_PIPE_CREATED; + pipe->state = SKL_PIPE_PAUSED; return 0; } |