diff options
author | Takashi Iwai <tiwai@suse.de> | 2005-11-30 10:12:26 +0100 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2006-01-03 12:29:59 +0100 |
commit | 9d70d91c4663d580bd18317dac3c7dc3bee79480 (patch) | |
tree | 3360f1b030f71385c82f28c01471b1e3131d1bc0 /sound/isa/ad1848 | |
parent | 403d19446bd0cabee70110415d2f3bc466f46448 (diff) | |
download | linux-3.10-9d70d91c4663d580bd18317dac3c7dc3bee79480.tar.gz linux-3.10-9d70d91c4663d580bd18317dac3c7dc3bee79480.tar.bz2 linux-3.10-9d70d91c4663d580bd18317dac3c7dc3bee79480.zip |
[ALSA] ad1848 - Fix compilation without CONFIG_PM
Modules: AD1848 driver
Fix compilation without CONFIG_PM.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/isa/ad1848')
-rw-r--r-- | sound/isa/ad1848/ad1848_lib.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sound/isa/ad1848/ad1848_lib.c b/sound/isa/ad1848/ad1848_lib.c index 83764c94153..b78530d7ea9 100644 --- a/sound/isa/ad1848/ad1848_lib.c +++ b/sound/isa/ad1848/ad1848_lib.c @@ -932,8 +932,10 @@ int snd_ad1848_create(struct snd_card *card, return err; } +#ifdef CONFIG_PM chip->suspend = snd_ad1848_suspend; chip->resume = snd_ad1848_resume; +#endif *rchip = chip; return 0; |