Commit af2c5dd3 authored by Jaroslav Kysela's avatar Jaroslav Kysela

[ALSA] Add emu10k1x driver

Documentation,PCI drivers,EMU10K1/EMU10K2 driver
Added the new driver, snd-emu10k1x, for SB Live Dell OEM version
by Francisco Moraes <fmoraes@nc.rr.com>.
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent a03705c2
...@@ -427,6 +427,13 @@ Module parameters ...@@ -427,6 +427,13 @@ Module parameters
* Creative Card 5.1 (c) 2003 [0x3fc3/0x7cff] * Creative Card 5.1 (c) 2003 [0x3fc3/0x7cff]
* Creative Card all ins and outs [0x3fff/0x7fff] * Creative Card all ins and outs [0x3fff/0x7fff]
Module snd-emu10k1x
-------------------
Module for Creative Emu10k1X (SB Live Dell OEM version)
Module supports up to 8 cards.
Module snd-ens1370 Module snd-ens1370
------------------ ------------------
......
...@@ -172,6 +172,18 @@ config SND_EMU10K1 ...@@ -172,6 +172,18 @@ config SND_EMU10K1
To compile this driver as a module, choose M here: the module To compile this driver as a module, choose M here: the module
will be called snd-emu10k1. will be called snd-emu10k1.
config SND_EMU10K1X
tristate "Emu10k1X (Dell OEM Version)"
depends on SND
select SND_AC97_CODEC
select SND_RAWMIDI
help
Say Y here to include support for the Dell OEM version of the
Sound Blaster Live!.
To compile this driver as a module, choose M here: the module
will be called snd-emu10k1x.
config SND_KORG1212 config SND_KORG1212
tristate "Korg 1212 IO" tristate "Korg 1212 IO"
depends on SND depends on SND
......
...@@ -7,6 +7,7 @@ snd-emu10k1-objs := emu10k1.o emu10k1_main.o \ ...@@ -7,6 +7,7 @@ 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 emuproc.o emumixer.o emufx.o timer.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
# #
# this function returns: # this function returns:
...@@ -19,3 +20,4 @@ sequencer = $(if $(subst y,,$(CONFIG_SND_SEQUENCER)),$(if $(1),m),$(if $(CONFIG_ ...@@ -19,3 +20,4 @@ sequencer = $(if $(subst y,,$(CONFIG_SND_SEQUENCER)),$(if $(1),m),$(if $(CONFIG_
# Toplevel Module Dependency # Toplevel Module Dependency
obj-$(CONFIG_SND_EMU10K1) += snd-emu10k1.o obj-$(CONFIG_SND_EMU10K1) += snd-emu10k1.o
obj-$(call sequencer,$(CONFIG_SND_EMU10K1)) += snd-emu10k1-synth.o obj-$(call sequencer,$(CONFIG_SND_EMU10K1)) += snd-emu10k1-synth.o
obj-$(CONFIG_SND_EMU10K1X) += snd-emu10k1x.o
This diff is collapsed.
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