diff options
author | Takashi Iwai <[email protected]> | 2023-03-30 15:28:47 +0200 |
---|---|---|
committer | Takashi Iwai <[email protected]> | 2023-03-30 17:04:56 +0200 |
commit | 665d30119af9ca557fc8811ea1c0e8609c165c8a (patch) | |
tree | f7742f66621bc365dc950bf72397dc5efc94f3eb | |
parent | 84f02f3363382d45b8ab75361f7d69beb8f27f32 (diff) |
ALSA: ac97: Define dummy functions for snd_ac97_suspend() and resume()
For allowing the build without CONFIG_PM, add definitions of dummy
functions for snd_ac97_suspend() and snd_ac97_resume() without
CONFIG_PM, too.
Link: https://lore.kernel.org/r/[email protected]
Reviewed-by: Jaroslav Kysela <[email protected]>
Reviewed-by: Tasos Sahanidis <[email protected]>
Signed-off-by: Takashi Iwai <[email protected]>
-rw-r--r-- | include/sound/ac97_codec.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/sound/ac97_codec.h b/include/sound/ac97_codec.h index 49200ec26dc4..c495c6d5fbe0 100644 --- a/include/sound/ac97_codec.h +++ b/include/sound/ac97_codec.h @@ -335,6 +335,9 @@ static inline int snd_ac97_update_power(struct snd_ac97 *ac97, int reg, #ifdef CONFIG_PM void snd_ac97_suspend(struct snd_ac97 *ac97); void snd_ac97_resume(struct snd_ac97 *ac97); +#else +static inline void snd_ac97_suspend(struct snd_ac97 *ac97) {} +static inline void snd_ac97_resume(struct snd_ac97 *ac97) {} #endif int snd_ac97_reset(struct snd_ac97 *ac97, bool try_warm, unsigned int id, unsigned int id_mask); |