Commit c9be8427 authored by Leon Romanovsky's avatar Leon Romanovsky Committed by Mark Brown

ASoC: alc5632: Fix compile without CONFIG_PM

Signed-off-by: default avatarLeon Romanovsky <leon@leon.nu>
Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
parent 6662ff5c
...@@ -939,6 +939,7 @@ static struct snd_soc_dai_driver alc5632_dai = { ...@@ -939,6 +939,7 @@ static struct snd_soc_dai_driver alc5632_dai = {
.symmetric_rates = 1, .symmetric_rates = 1,
}; };
#ifdef CONFIG_PM
static int alc5632_suspend(struct snd_soc_codec *codec, pm_message_t mesg) static int alc5632_suspend(struct snd_soc_codec *codec, pm_message_t mesg)
{ {
alc5632_set_bias_level(codec, SND_SOC_BIAS_OFF); alc5632_set_bias_level(codec, SND_SOC_BIAS_OFF);
...@@ -961,6 +962,10 @@ static int alc5632_resume(struct snd_soc_codec *codec) ...@@ -961,6 +962,10 @@ static int alc5632_resume(struct snd_soc_codec *codec)
alc5632_set_bias_level(codec, SND_SOC_BIAS_STANDBY); alc5632_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
return 0; return 0;
} }
#else
#define alc5632_suspend NULL
#define alc5632_resume NULL
#endif
static int alc5632_probe(struct snd_soc_codec *codec) static int alc5632_probe(struct snd_soc_codec *codec)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment