diff options
author | Damien.Horsley <Damien.Horsley@imgtec.com> | 2015-11-10 09:09:35 -0500 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-11-16 05:06:58 -0500 |
commit | 7f0e823d58b7574cbe417d5bbc285891baed4437 (patch) | |
tree | 0f4e6aa17f1079110c76a5d6dba72681a5e0453f | |
parent | 3958232273d791629d8fffc67b6c5b895ab1e91a (diff) |
ASoC: img: parallel out: Add missing initialiser
Add missing initialiser for control_set variable
in img_prl_out_set_fmt
Signed-off-by: Damien.Horsley <Damien.Horsley@imgtec.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | sound/soc/img/img-parallel-out.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/img/img-parallel-out.c b/sound/soc/img/img-parallel-out.c index beda18b18c64..c1610a054d65 100644 --- a/sound/soc/img/img-parallel-out.c +++ b/sound/soc/img/img-parallel-out.c | |||
@@ -154,7 +154,7 @@ static int img_prl_out_hw_params(struct snd_pcm_substream *substream, | |||
154 | static int img_prl_out_set_fmt(struct snd_soc_dai *dai, unsigned int fmt) | 154 | static int img_prl_out_set_fmt(struct snd_soc_dai *dai, unsigned int fmt) |
155 | { | 155 | { |
156 | struct img_prl_out *prl = snd_soc_dai_get_drvdata(dai); | 156 | struct img_prl_out *prl = snd_soc_dai_get_drvdata(dai); |
157 | u32 reg, control_set; | 157 | u32 reg, control_set = 0; |
158 | 158 | ||
159 | switch (fmt & SND_SOC_DAIFMT_INV_MASK) { | 159 | switch (fmt & SND_SOC_DAIFMT_INV_MASK) { |
160 | case SND_SOC_DAIFMT_NB_NF: | 160 | case SND_SOC_DAIFMT_NB_NF: |