ASoC: alc5632: Fix compile without CONFIG_PM
Signed-off-by: Leon Romanovsky <leon@leon.nu>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
diff --git a/sound/soc/codecs/alc5632.c b/sound/soc/codecs/alc5632.c
index 07e958a..e560a21 100644
--- a/sound/soc/codecs/alc5632.c
+++ b/sound/soc/codecs/alc5632.c
@@ -939,6 +939,7 @@
.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 @@
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)
{