diff options
| author | Takashi Iwai <tiwai@suse.de> | 2012-08-14 18:12:04 +0200 | 
|---|---|---|
| committer | Takashi Iwai <tiwai@suse.de> | 2012-08-14 18:12:04 +0200 | 
| commit | c7561cd80469f2fe4a6be0984db57832ee7f2a3b (patch) | |
| tree | 02ce843b7caed4d41ef6d17450e6b05b96c94952 /sound/pci/emu10k1/emu10k1_main.c | |
| parent | 7ccbde57ce312ff1388c2990699f8863280808ac (diff) | |
| download | olio-linux-3.10-c7561cd80469f2fe4a6be0984db57832ee7f2a3b.tar.xz olio-linux-3.10-c7561cd80469f2fe4a6be0984db57832ee7f2a3b.zip  | |
ALSA: PCI: Replace CONFIG_PM with CONFIG_PM_SLEEP
Otherwise we may get compile warnings due to unused functions.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/emu10k1/emu10k1_main.c')
| -rw-r--r-- | sound/pci/emu10k1/emu10k1_main.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/sound/pci/emu10k1/emu10k1_main.c b/sound/pci/emu10k1/emu10k1_main.c index 754924081d0..bed4485f34f 100644 --- a/sound/pci/emu10k1/emu10k1_main.c +++ b/sound/pci/emu10k1/emu10k1_main.c @@ -1241,7 +1241,7 @@ static int snd_emu10k1_emu1010_init(struct snd_emu10k1 *emu)   *  Create the EMU10K1 instance   */ -#ifdef CONFIG_PM +#ifdef CONFIG_PM_SLEEP  static int alloc_pm_buffer(struct snd_emu10k1 *emu);  static void free_pm_buffer(struct snd_emu10k1 *emu);  #endif @@ -1275,7 +1275,7 @@ static int snd_emu10k1_free(struct snd_emu10k1 *emu)  		snd_dma_free_pages(&emu->ptb_pages);  	vfree(emu->page_ptr_table);  	vfree(emu->page_addr_table); -#ifdef CONFIG_PM +#ifdef CONFIG_PM_SLEEP  	free_pm_buffer(emu);  #endif  	if (emu->port) @@ -1971,7 +1971,7 @@ int __devinit snd_emu10k1_create(struct snd_card *card,  	err = snd_emu10k1_init(emu, enable_ir, 0);  	if (err < 0)  		goto error; -#ifdef CONFIG_PM +#ifdef CONFIG_PM_SLEEP  	err = alloc_pm_buffer(emu);  	if (err < 0)  		goto error; @@ -2000,7 +2000,7 @@ int __devinit snd_emu10k1_create(struct snd_card *card,  	return err;  } -#ifdef CONFIG_PM +#ifdef CONFIG_PM_SLEEP  static unsigned char saved_regs[] = {  	CPF, PTRX, CVCF, VTFT, Z1, Z2, PSST, DSL, CCCA, CCR, CLP,  	FXRT, MAPA, MAPB, ENVVOL, ATKHLDV, DCYSUSV, LFOVAL1, ENVVAL,  |