diff options
author | Lars-Peter Clausen <lars@metafoo.de> | 2014-09-09 20:42:44 +0200 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-09-09 21:08:46 +0100 |
commit | ee6b42ee21b16aa322758fdab0d57082761b09fd (patch) | |
tree | e1b780ab6202563341d525e82e9cfef03f67c6ad /sound/soc/codecs | |
parent | f66a91ff8e83e95c822691270d883cbcb3244302 (diff) | |
download | linux-ee6b42ee21b16aa322758fdab0d57082761b09fd.tar.bz2 |
ASoC: da732x: Remove unused codec field form da732x_priv struct
The field is initialized in the probe callback, but never used again. So it
can be removed.
Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'sound/soc/codecs')
-rw-r--r-- | sound/soc/codecs/da732x.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sound/soc/codecs/da732x.c b/sound/soc/codecs/da732x.c index edcbfeafc8cb..c28cf339f066 100644 --- a/sound/soc/codecs/da732x.c +++ b/sound/soc/codecs/da732x.c @@ -35,7 +35,6 @@ struct da732x_priv { struct regmap *regmap; - struct snd_soc_codec *codec; unsigned int sysclk; bool pll_en; @@ -1512,8 +1511,6 @@ static int da732x_probe(struct snd_soc_codec *codec) { struct da732x_priv *da732x = snd_soc_codec_get_drvdata(codec); - da732x->codec = codec; - da732x_set_bias_level(codec, SND_SOC_BIAS_STANDBY); return 0; |