]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
ASoC: Intel: sst: remove unused 'ops'
authorVinod Koul <vinod.koul@intel.com>
Thu, 8 Dec 2016 17:31:26 +0000 (23:01 +0530)
committerMark Brown <broonie@kernel.org>
Thu, 15 Dec 2016 11:20:04 +0000 (11:20 +0000)
In sst_free_stream(), a variable 'ops' is initialized but
not used. So remove it.

sound/soc/intel/atom/sst/sst_stream.c: In function ‘sst_free_stream’:
sound/soc/intel/atom/sst/sst_stream.c:397:24: warning: variable ‘ops’ set but not used [-Wunused-but-set-variable]
  struct intel_sst_ops *ops;

Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/intel/atom/sst/sst_stream.c

index 51bdeeecb7c842fdf8035716d3402a607a0ebf37..83d8dda152331054650f6fca0d5d09d160d73108 100644 (file)
@@ -394,7 +394,6 @@ int sst_free_stream(struct intel_sst_drv *sst_drv_ctx, int str_id)
 {
        int retval = 0;
        struct stream_info *str_info;
-       struct intel_sst_ops *ops;
 
        dev_dbg(sst_drv_ctx->dev, "SST DBG:sst_free_stream for %d\n", str_id);
 
@@ -407,7 +406,6 @@ int sst_free_stream(struct intel_sst_drv *sst_drv_ctx, int str_id)
        str_info = get_stream_info(sst_drv_ctx, str_id);
        if (!str_info)
                return -EINVAL;
-       ops = sst_drv_ctx->ops;
 
        mutex_lock(&str_info->lock);
        if (str_info->status != STREAM_UN_INIT) {