diff options
author | Jarkko Nikula <jarkko.nikula@linux.intel.com> | 2014-09-19 07:48:19 -0400 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2014-09-24 04:37:17 -0400 |
commit | 3256ff6e5117c493ec20e96aad9f0a20d656d561 (patch) | |
tree | 2cac8279e318de370be2ac400d83353e40304bcf | |
parent | ced1933db67087554abf22bcb285eb6873380b10 (diff) |
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: Jarkko Nikula <jarkko.nikula@linux.intel.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | sound/soc/codecs/max98090.c | 1 | ||||
-rw-r--r-- | sound/soc/codecs/max98090.h | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/sound/soc/codecs/max98090.c b/sound/soc/codecs/max98090.c index 3e27de1f473b..f2a3f30a5d9f 100644 --- a/sound/soc/codecs/max98090.c +++ b/sound/soc/codecs/max98090.c | |||
@@ -2333,7 +2333,6 @@ static int max98090_probe(struct snd_soc_codec *codec) | |||
2333 | max98090->lin_state = 0; | 2333 | max98090->lin_state = 0; |
2334 | max98090->pa1en = 0; | 2334 | max98090->pa1en = 0; |
2335 | max98090->pa2en = 0; | 2335 | max98090->pa2en = 0; |
2336 | max98090->extmic_mux = 0; | ||
2337 | 2336 | ||
2338 | ret = snd_soc_read(codec, M98090_REG_REVISION_ID); | 2337 | ret = snd_soc_read(codec, M98090_REG_REVISION_ID); |
2339 | if (ret < 0) { | 2338 | if (ret < 0) { |
diff --git a/sound/soc/codecs/max98090.h b/sound/soc/codecs/max98090.h index a16319512182..84ca3f4f4403 100644 --- a/sound/soc/codecs/max98090.h +++ b/sound/soc/codecs/max98090.h | |||
@@ -1541,7 +1541,6 @@ struct max98090_priv { | |||
1541 | u8 lin_state; | 1541 | u8 lin_state; |
1542 | unsigned int pa1en; | 1542 | unsigned int pa1en; |
1543 | unsigned int pa2en; | 1543 | unsigned int pa2en; |
1544 | unsigned int extmic_mux; | ||
1545 | unsigned int sidetone; | 1544 | unsigned int sidetone; |
1546 | bool master; | 1545 | bool master; |
1547 | }; | 1546 | }; |