Commit 3256ff6e authored by Jarkko Nikula's avatar Jarkko Nikula Committed by Mark Brown

ASoC: max98090: Remove structure member extmic_mux from private data

There is no other use for extmic_mux than setting it to zero so remove it.
Signed-off-by: default avatarJarkko Nikula <jarkko.nikula@linux.intel.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent ced1933d
...@@ -2333,7 +2333,6 @@ static int max98090_probe(struct snd_soc_codec *codec) ...@@ -2333,7 +2333,6 @@ static int max98090_probe(struct snd_soc_codec *codec)
max98090->lin_state = 0; max98090->lin_state = 0;
max98090->pa1en = 0; max98090->pa1en = 0;
max98090->pa2en = 0; max98090->pa2en = 0;
max98090->extmic_mux = 0;
ret = snd_soc_read(codec, M98090_REG_REVISION_ID); ret = snd_soc_read(codec, M98090_REG_REVISION_ID);
if (ret < 0) { if (ret < 0) {
......
...@@ -1541,7 +1541,6 @@ struct max98090_priv { ...@@ -1541,7 +1541,6 @@ struct max98090_priv {
u8 lin_state; u8 lin_state;
unsigned int pa1en; unsigned int pa1en;
unsigned int pa2en; unsigned int pa2en;
unsigned int extmic_mux;
unsigned int sidetone; unsigned int sidetone;
bool master; bool master;
}; };
......
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