]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
ASoC: alc5632: Fix compile without CONFIG_PM
authorLeon Romanovsky <leon@leon.nu>
Wed, 16 Nov 2011 10:07:00 +0000 (12:07 +0200)
committerMark Brown <broonie@opensource.wolfsonmicro.com>
Wed, 16 Nov 2011 10:41:55 +0000 (10:41 +0000)
Signed-off-by: Leon Romanovsky <leon@leon.nu>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
sound/soc/codecs/alc5632.c

index 07e958aeea5c44ff2acb84dcf37f351abe81c70c..e560a2119b12cbc7f53d51a60c814e0784cd4204 100644 (file)
@@ -939,6 +939,7 @@ static struct snd_soc_dai_driver alc5632_dai = {
        .symmetric_rates = 1,
 };
 
+#ifdef CONFIG_PM
 static int alc5632_suspend(struct snd_soc_codec *codec, pm_message_t mesg)
 {
        alc5632_set_bias_level(codec, SND_SOC_BIAS_OFF);
@@ -961,6 +962,10 @@ static int alc5632_resume(struct snd_soc_codec *codec)
        alc5632_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
        return 0;
 }
+#else
+#define        alc5632_suspend NULL
+#define        alc5632_resume  NULL
+#endif
 
 static int alc5632_probe(struct snd_soc_codec *codec)
 {