Commit 506e6ae2 authored by Takashi Iwai's avatar Takashi Iwai

ALSA: emu10k1: Fix/cleanup ifdef CONFIG_PROC_FS

Build emuproc.o conditionally and drop the unneeded ifdefs.
Some are replaced with the new CONFIG_SND_PROC_FS.
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent 95bb6258
...@@ -5,7 +5,8 @@ ...@@ -5,7 +5,8 @@
snd-emu10k1-objs := emu10k1.o emu10k1_main.o \ snd-emu10k1-objs := emu10k1.o emu10k1_main.o \
irq.o memory.o voice.o emumpu401.o emupcm.o io.o \ irq.o memory.o voice.o emumpu401.o emupcm.o io.o \
emuproc.o emumixer.o emufx.o timer.o p16v.o emumixer.o emufx.o timer.o p16v.o
snd-emu10k1-$(CONFIG_SND_PROC_FS) += emuproc.o
snd-emu10k1-synth-objs := emu10k1_synth.o emu10k1_callback.o emu10k1_patch.o snd-emu10k1-synth-objs := emu10k1_synth.o emu10k1_callback.o emu10k1_patch.o
snd-emu10k1x-objs := emu10k1x.o snd-emu10k1x-objs := emu10k1x.o
......
...@@ -2063,7 +2063,7 @@ int snd_emu10k1_create(struct snd_card *card, ...@@ -2063,7 +2063,7 @@ int snd_emu10k1_create(struct snd_card *card,
if (err < 0) if (err < 0)
goto error; goto error;
#ifdef CONFIG_PROC_FS #ifdef CONFIG_SND_PROC_FS
snd_emu10k1_proc_init(emu); snd_emu10k1_proc_init(emu);
#endif #endif
......
...@@ -34,7 +34,6 @@ ...@@ -34,7 +34,6 @@
#include <sound/emu10k1.h> #include <sound/emu10k1.h>
#include "p16v.h" #include "p16v.h"
#ifdef CONFIG_PROC_FS
static void snd_emu10k1_proc_spdif_status(struct snd_emu10k1 * emu, static void snd_emu10k1_proc_spdif_status(struct snd_emu10k1 * emu,
struct snd_info_buffer *buffer, struct snd_info_buffer *buffer,
char *title, char *title,
...@@ -656,4 +655,3 @@ int snd_emu10k1_proc_init(struct snd_emu10k1 *emu) ...@@ -656,4 +655,3 @@ int snd_emu10k1_proc_init(struct snd_emu10k1 *emu)
} }
return 0; return 0;
} }
#endif /* CONFIG_PROC_FS */
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