diff options
author | Hans de Goede <hdegoede@redhat.com> | 2018-02-19 01:01:38 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2018-03-01 19:22:44 +0300 |
commit | 6f5062773747b3d3eb9f957030ac1be98e983ac2 (patch) | |
tree | b48cd75fdcde1c88d1a3a75b034e4c45f0603ae3 /sound/soc/intel/atom | |
parent | 257aaceb63eb2337e50cd9f9008d11df2cb86207 (diff) | |
download | linux-6f5062773747b3d3eb9f957030ac1be98e983ac2.tar.xz |
ASoC: Intel: sst: Fix error-code check in sst_pause_stream()
The value returned by sst_prepare_and_post_msg() is a negated SST_ERR_*
value, so we must check for -SST_ERR_INVALID_STREAM_ID. Note that
sst_pause_resume() already has the correct check.
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/intel/atom')
-rw-r--r-- | sound/soc/intel/atom/sst/sst_stream.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/intel/atom/sst/sst_stream.c b/sound/soc/intel/atom/sst/sst_stream.c index 7ee6aeb7e0af..b082b0922a7a 100644 --- a/sound/soc/intel/atom/sst/sst_stream.c +++ b/sound/soc/intel/atom/sst/sst_stream.c @@ -253,7 +253,7 @@ int sst_pause_stream(struct intel_sst_drv *sst_drv_ctx, int str_id) if (retval == 0) { str_info->prev = str_info->status; str_info->status = STREAM_PAUSED; - } else if (retval == SST_ERR_INVALID_STREAM_ID) { + } else if (retval == -SST_ERR_INVALID_STREAM_ID) { retval = -EINVAL; mutex_lock(&sst_drv_ctx->sst_lock); sst_clean_stream(str_info); |