Commit b53109db authored by Mark Brown's avatar Mark Brown

ASoC: Fix shadowed variables in twl4030

No need to define second copies of mode and format, they're declared
with exactly the same type at the head of the function and there's no
conflict in their use.
Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
parent a583cd53
...@@ -1609,8 +1609,6 @@ static int twl4030_hw_params(struct snd_pcm_substream *substream, ...@@ -1609,8 +1609,6 @@ static int twl4030_hw_params(struct snd_pcm_substream *substream,
/* If the substream has 4 channel, do the necessary setup */ /* If the substream has 4 channel, do the necessary setup */
if (params_channels(params) == 4) { if (params_channels(params) == 4) {
u8 format, mode;
format = twl4030_read_reg_cache(codec, TWL4030_REG_AUDIO_IF); format = twl4030_read_reg_cache(codec, TWL4030_REG_AUDIO_IF);
mode = twl4030_read_reg_cache(codec, TWL4030_REG_CODEC_MODE); mode = twl4030_read_reg_cache(codec, TWL4030_REG_CODEC_MODE);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment