]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
ASoC: img: remove unused ‘format’
authorVinod Koul <vinod.koul@intel.com>
Thu, 8 Dec 2016 17:31:34 +0000 (23:01 +0530)
committerMark Brown <broonie@kernel.org>
Thu, 15 Dec 2016 11:22:52 +0000 (11:22 +0000)
In img_prl_out_hw_params(), 'format' is initialized but never used.
So remove it.

sound/soc/img/img-parallel-out.c: In function ‘img_prl_out_hw_params’:
sound/soc/img/img-parallel-out.c:126:19: warning: variable ‘format’ set but not used [-Wunused-but-set-variable]
  snd_pcm_format_t format;

Cc: Damien.Horsley <Damien.Horsley@imgtec.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/img/img-parallel-out.c

index c1610a054d65aafd9bac2032dc05d1f8b68d31eb..33ceb207ee7040ab8f32b5ef5e7546099bd42617 100644 (file)
@@ -123,10 +123,8 @@ static int img_prl_out_hw_params(struct snd_pcm_substream *substream,
        struct img_prl_out *prl = snd_soc_dai_get_drvdata(dai);
        unsigned int rate, channels;
        u32 reg, control_set = 0;
-       snd_pcm_format_t format;
 
        rate = params_rate(params);
-       format = params_format(params);
        channels = params_channels(params);
 
        switch (params_format(params)) {