]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
ALSA: ac97: Fix ifdef CONFIG_PROC_FS
authorTakashi Iwai <tiwai@suse.de>
Fri, 29 May 2015 05:52:43 +0000 (07:52 +0200)
committerTakashi Iwai <tiwai@suse.de>
Fri, 29 May 2015 05:52:43 +0000 (07:52 +0200)
Replaced with the new CONFIG_SND_PROC_FS.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/pci/ac97/Makefile
sound/pci/ac97/ac97_local.h

index 41fa322f0971677382fcb9ab3ba94492139ee20c..52617533371099771f1acd5c40b0aa76e03acdae 100644 (file)
@@ -4,7 +4,7 @@
 #
 
 snd-ac97-codec-y := ac97_codec.o ac97_pcm.o
-snd-ac97-codec-$(CONFIG_PROC_FS) += ac97_proc.o
+snd-ac97-codec-$(CONFIG_SND_PROC_FS) += ac97_proc.o
 
 # Toplevel Module Dependency
 obj-$(CONFIG_SND_AC97_CODEC) += snd-ac97-codec.o
index c276a5e3f7ac3af5336f563df59383ffd1b06dc3..941a5062cc20acf1925884cfcca2ff2772104c21 100644 (file)
@@ -28,7 +28,7 @@ int snd_ac97_update_bits_nolock(struct snd_ac97 *ac97, unsigned short reg,
                                unsigned short mask, unsigned short value);
 
 /* ac97_proc.c */
-#ifdef CONFIG_PROC_FS
+#ifdef CONFIG_SND_PROC_FS
 void snd_ac97_bus_proc_init(struct snd_ac97_bus * ac97);
 void snd_ac97_bus_proc_done(struct snd_ac97_bus * ac97);
 void snd_ac97_proc_init(struct snd_ac97 * ac97);