diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2013-04-18 18:44:01 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2013-04-29 12:16:37 -0500 |
commit | 98af93fde2e37b5b0c8cee9036e028fe6df6446c (patch) | |
tree | 0133556119069258d23682f20eeeb4ae6f09245a /hw/audio | |
parent | f6547f07d41491d74179e8dd100f7477abdd43b1 (diff) |
audio: replace audio card configuration with default-configs
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Message-id: 1366303444-24620-6-git-send-email-pbonzini@redhat.com
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/audio')
-rw-r--r-- | hw/audio/Makefile.objs | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/hw/audio/Makefile.objs b/hw/audio/Makefile.objs index 237510204b..7ce85a2e88 100644 --- a/hw/audio/Makefile.objs +++ b/hw/audio/Makefile.objs @@ -1,14 +1,12 @@ # Sound -sound-obj-y = -sound-obj-$(CONFIG_SB16) += sb16.o -sound-obj-$(CONFIG_ES1370) += es1370.o -sound-obj-$(CONFIG_AC97) += ac97.o -sound-obj-$(CONFIG_ADLIB) += fmopl.o adlib.o -sound-obj-$(CONFIG_GUS) += gus.o gusemu_hal.o gusemu_mixer.o -sound-obj-$(CONFIG_CS4231A) += cs4231a.o -sound-obj-$(CONFIG_HDA) += intel-hda.o hda-codec.o +common-obj-$(CONFIG_SB16) += sb16.o +common-obj-$(CONFIG_ES1370) += es1370.o +common-obj-$(CONFIG_AC97) += ac97.o +common-obj-$(CONFIG_ADLIB) += fmopl.o adlib.o +common-obj-$(CONFIG_GUS) += gus.o gusemu_hal.o gusemu_mixer.o +common-obj-$(CONFIG_CS4231A) += cs4231a.o +common-obj-$(CONFIG_HDA) += intel-hda.o hda-codec.o -common-obj-$(CONFIG_SOUND) += $(sound-obj-y) common-obj-$(CONFIG_PCSPK) += pcspk.o common-obj-$(CONFIG_WM8750) += wm8750.o common-obj-$(CONFIG_PL041) += pl041.o lm4549.o |