aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/codecs/adav80x.c
diff options
context:
space:
mode:
authorLars-Peter Clausen <lars@metafoo.de>2011-12-02 04:18:28 -0500
committerMark Brown <broonie@opensource.wolfsonmicro.com>2011-12-02 05:32:03 -0500
commit84b315ee893676e9a9ce8ac42ab5ef44e2af3ee1 (patch)
treec781bee632abab75bcf9780b7efa4ba7ee5e750c /sound/soc/codecs/adav80x.c
parent36c6b54cb0ec1908bc98c4d2d3b8584219f4d532 (diff)
ASoC: Drop unused state parameter from CODEC suspend callback
The existence of this parameter is purely historical. None of the CODEC drivers uses it and we always pass in the same value anyway, so it should be safe to remove it. Signed-off-by: Lars-Peter Clausen <lars@metafoo.de> Acked-by: Liam Girdwood <lrg@ti.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/codecs/adav80x.c')
-rw-r--r--sound/soc/codecs/adav80x.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/adav80x.c b/sound/soc/codecs/adav80x.c
index f9f08948e5e8..ebd7b37b902b 100644
--- a/sound/soc/codecs/adav80x.c
+++ b/sound/soc/codecs/adav80x.c
@@ -798,7 +798,7 @@ static int adav80x_probe(struct snd_soc_codec *codec)
798 return adav80x_set_bias_level(codec, SND_SOC_BIAS_STANDBY); 798 return adav80x_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
799} 799}
800 800
801static int adav80x_suspend(struct snd_soc_codec *codec, pm_message_t state) 801static int adav80x_suspend(struct snd_soc_codec *codec)
802{ 802{
803 return adav80x_set_bias_level(codec, SND_SOC_BIAS_OFF); 803 return adav80x_set_bias_level(codec, SND_SOC_BIAS_OFF);
804} 804}