aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2014-03-03 11:15:01 +0100
committerTakashi Iwai <tiwai@suse.de>2014-03-03 11:15:01 +0100
commit85fad2210a04529f132b44076b139489ffd2e7d6 (patch)
treeb832ec76b4c8523c4043860eafa055ed74030039
parentf33d176c6231cb0ba657ed228574b972ed22f505 (diff)
downloadhda-emu-85fad2210a04529f132b44076b139489ffd2e7d6.tar.gz
Enable CONFIG_SND_HDA_INPUT_BEEP
... and add missing hda_beep.c in kernel/Makefile.am
-rw-r--r--include/codec_config.h1
-rw-r--r--kernel/Makefile.am4
2 files changed, 5 insertions, 0 deletions
diff --git a/include/codec_config.h b/include/codec_config.h
index dab6245..78bb04d 100644
--- a/include/codec_config.h
+++ b/include/codec_config.h
@@ -9,5 +9,6 @@
#define CONFIG_SND_HDA_GENERIC
#define CONFIG_SND_HDA_HWDEP
#define CONFIG_SND_HDA_INPUT_JACK
+#define CONFIG_SND_HDA_INPUT_BEEP
#define CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
diff --git a/kernel/Makefile.am b/kernel/Makefile.am
index 3880d07..c76fe84 100644
--- a/kernel/Makefile.am
+++ b/kernel/Makefile.am
@@ -63,6 +63,10 @@ if HAVE_HDA_ELD
HELPERS += hda_eld.c
endif
+if HAVE_HDA_BEEP
+HELPERS += hda_beep.c
+endif
+
noinst_LIBRARIES = libhda.a
libhda_a_SOURCES = hda_codec.c hda_generic.c misc_wrapper.c \
$(PATCHES) $(HELPERS)