diff options
author | Joachim Foerster <JOFT@gmx.de> | 2007-11-05 10:06:01 -0500 |
---|---|---|
committer | Jaroslav Kysela <perex@perex.cz> | 2008-01-31 11:29:15 -0500 |
commit | a9f00d8df2115b396f13ea74b835f18215a871cc (patch) | |
tree | 2af215341e8ff1ca72de73cabda2e31d122db025 /sound/drivers/Makefile | |
parent | f1f208d0b4fb79f99d2ca5031c61ff5b52e42e75 (diff) |
[ALSA] Xilinx ML403 AC97 Controller Reference device driver
Add ALSA support for the opb_ac97_controller_ref_v1_00_a ip core found
in Xilinx' ML403 reference design.
Known issue: Currently this driver hits a WARN_ON_ONCE(1) statement in
kernel/irq/resend.c (line 70). According to Linus
(http://lkml.org/lkml/2007/8/5/5) this may be ignored, right? I haven't
had a look into this 'problem' yet.
Signed-off-by: Joachim Foerster <JOFT@gmx.de>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Jaroslav Kysela <perex@perex.cz>
Diffstat (limited to 'sound/drivers/Makefile')
-rw-r--r-- | sound/drivers/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sound/drivers/Makefile b/sound/drivers/Makefile index 80aeff5ccdea..8e5530006e1f 100644 --- a/sound/drivers/Makefile +++ b/sound/drivers/Makefile | |||
@@ -9,6 +9,7 @@ snd-mts64-objs := mts64.o | |||
9 | snd-portman2x4-objs := portman2x4.o | 9 | snd-portman2x4-objs := portman2x4.o |
10 | snd-serial-u16550-objs := serial-u16550.o | 10 | snd-serial-u16550-objs := serial-u16550.o |
11 | snd-virmidi-objs := virmidi.o | 11 | snd-virmidi-objs := virmidi.o |
12 | snd-ml403-ac97cr-objs := ml403-ac97cr.o pcm-indirect2.o | ||
12 | 13 | ||
13 | # Toplevel Module Dependency | 14 | # Toplevel Module Dependency |
14 | obj-$(CONFIG_SND_DUMMY) += snd-dummy.o | 15 | obj-$(CONFIG_SND_DUMMY) += snd-dummy.o |
@@ -17,5 +18,6 @@ obj-$(CONFIG_SND_SERIAL_U16550) += snd-serial-u16550.o | |||
17 | obj-$(CONFIG_SND_MTPAV) += snd-mtpav.o | 18 | obj-$(CONFIG_SND_MTPAV) += snd-mtpav.o |
18 | obj-$(CONFIG_SND_MTS64) += snd-mts64.o | 19 | obj-$(CONFIG_SND_MTS64) += snd-mts64.o |
19 | obj-$(CONFIG_SND_PORTMAN2X4) += snd-portman2x4.o | 20 | obj-$(CONFIG_SND_PORTMAN2X4) += snd-portman2x4.o |
21 | obj-$(CONFIG_SND_ML403_AC97CR) += snd-ml403-ac97cr.o | ||
20 | 22 | ||
21 | obj-$(CONFIG_SND) += opl3/ opl4/ mpu401/ vx/ | 23 | obj-$(CONFIG_SND) += opl3/ opl4/ mpu401/ vx/ |