diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2009-10-13 12:39:56 -0400 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2009-10-15 10:01:43 -0400 |
commit | d2058b0cd039aad89b111d83b9c347e9d8f57a84 (patch) | |
tree | 6bd622cf1ba7518a2e01cab18302b8bdea8b727c /sound/soc/codecs/wm8711.c | |
parent | ed9d040d40942e9c48167f9f37f86fab8e0e5e17 (diff) |
ASoC: Remove snd_soc_suspend_device()
The PM core will grow pm_link infrastructure in 2.6.33 which can be
used to implement the intended functionality of the ASoC-specific
device suspend and resume callbacks so drop them.
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/codecs/wm8711.c')
-rw-r--r-- | sound/soc/codecs/wm8711.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/sound/soc/codecs/wm8711.c b/sound/soc/codecs/wm8711.c index 90ec8c58e2f4..54189fbf9e93 100644 --- a/sound/soc/codecs/wm8711.c +++ b/sound/soc/codecs/wm8711.c | |||
@@ -548,21 +548,6 @@ static int __devexit wm8711_spi_remove(struct spi_device *spi) | |||
548 | return 0; | 548 | return 0; |
549 | } | 549 | } |
550 | 550 | ||
551 | #ifdef CONFIG_PM | ||
552 | static int wm8711_spi_suspend(struct spi_device *spi, pm_message_t msg) | ||
553 | { | ||
554 | return snd_soc_suspend_device(&spi->dev); | ||
555 | } | ||
556 | |||
557 | static int wm8711_spi_resume(struct spi_device *spi) | ||
558 | { | ||
559 | return snd_soc_resume_device(&spi->dev); | ||
560 | } | ||
561 | #else | ||
562 | #define wm8711_spi_suspend NULL | ||
563 | #define wm8711_spi_resume NULL | ||
564 | #endif | ||
565 | |||
566 | static struct spi_driver wm8711_spi_driver = { | 551 | static struct spi_driver wm8711_spi_driver = { |
567 | .driver = { | 552 | .driver = { |
568 | .name = "wm8711", | 553 | .name = "wm8711", |
@@ -570,8 +555,6 @@ static struct spi_driver wm8711_spi_driver = { | |||
570 | .owner = THIS_MODULE, | 555 | .owner = THIS_MODULE, |
571 | }, | 556 | }, |
572 | .probe = wm8711_spi_probe, | 557 | .probe = wm8711_spi_probe, |
573 | .suspend = wm8711_spi_suspend, | ||
574 | .resume = wm8711_spi_resume, | ||
575 | .remove = __devexit_p(wm8711_spi_remove), | 558 | .remove = __devexit_p(wm8711_spi_remove), |
576 | }; | 559 | }; |
577 | #endif /* CONFIG_SPI_MASTER */ | 560 | #endif /* CONFIG_SPI_MASTER */ |