aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc
diff options
context:
space:
mode:
authorPeter Ujfalusi <peter.ujfalusi@ti.com>2013-01-11 11:01:41 -0500
committerMark Brown <broonie@opensource.wolfsonmicro.com>2013-01-11 18:54:56 -0500
commit09a8b6719caecff6c08d505c1f7126b7be68663a (patch)
tree7065a59c815c4117b5ca31de83d89e43875e15b6 /sound/soc
parent8d61f4901f83461e1f04df7743777e9db5f541aa (diff)
ASoC: twl4030: Remove suspend/resume soc driver operations
With idle_bias_off these are no longer needed. Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc')
-rw-r--r--sound/soc/codecs/twl4030.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/sound/soc/codecs/twl4030.c b/sound/soc/codecs/twl4030.c
index 7bfabe5750e8..8e6e5b016021 100644
--- a/sound/soc/codecs/twl4030.c
+++ b/sound/soc/codecs/twl4030.c
@@ -2296,18 +2296,6 @@ static struct snd_soc_dai_driver twl4030_dai[] = {
2296}, 2296},
2297}; 2297};
2298 2298
2299static int twl4030_soc_suspend(struct snd_soc_codec *codec)
2300{
2301 twl4030_set_bias_level(codec, SND_SOC_BIAS_OFF);
2302 return 0;
2303}
2304
2305static int twl4030_soc_resume(struct snd_soc_codec *codec)
2306{
2307 twl4030_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
2308 return 0;
2309}
2310
2311static int twl4030_soc_probe(struct snd_soc_codec *codec) 2299static int twl4030_soc_probe(struct snd_soc_codec *codec)
2312{ 2300{
2313 struct twl4030_priv *twl4030; 2301 struct twl4030_priv *twl4030;
@@ -2345,8 +2333,6 @@ static int twl4030_soc_remove(struct snd_soc_codec *codec)
2345static struct snd_soc_codec_driver soc_codec_dev_twl4030 = { 2333static struct snd_soc_codec_driver soc_codec_dev_twl4030 = {
2346 .probe = twl4030_soc_probe, 2334 .probe = twl4030_soc_probe,
2347 .remove = twl4030_soc_remove, 2335 .remove = twl4030_soc_remove,
2348 .suspend = twl4030_soc_suspend,
2349 .resume = twl4030_soc_resume,
2350 .read = twl4030_read_reg_cache, 2336 .read = twl4030_read_reg_cache,
2351 .write = twl4030_write, 2337 .write = twl4030_write,
2352 .set_bias_level = twl4030_set_bias_level, 2338 .set_bias_level = twl4030_set_bias_level,