Skip to content

Commit

Permalink
[ALSA] Add snd-mts64 driver for ESI Miditerminal 4140
Browse files Browse the repository at this point in the history
Added snd-mts64 driver for Ego Systems (ESI) Miditerminal 4140
by Matthias Koenig <[email protected]>.
The driver requires parport (CONFIG_PARPORT).

Signed-off-by: Matthias Koenig <[email protected]>
Signed-off-by: Takashi Iwai <[email protected]>
Signed-off-by: Jaroslav Kysela <[email protected]>
  • Loading branch information
mkng73 authored and Jaroslav Kysela committed Sep 23, 2006
1 parent 9265d19 commit 68ab801
Show file tree
Hide file tree
Showing 4 changed files with 1,114 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Documentation/sound/alsa/ALSA-Configuration.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1216,6 +1216,14 @@ Prior to version 0.9.0rc4 options had a 'snd_' prefix. This was removed.

Module supports only 1 card. This module has no enable option.

Module snd-mts64
----------------

Module for Ego Systems (ESI) Miditerminal 4140

This module supports multiple devices.
Requires parport (CONFIG_PARPORT).

Module snd-nm256
----------------

Expand Down
13 changes: 13 additions & 0 deletions sound/drivers/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,19 @@ config SND_MTPAV
To compile this driver as a module, choose M here: the module
will be called snd-mtpav.

config SND_MTS64
tristate "ESI Miditerminal 4140 driver"
depends on SND && PARPORT
select SND_RAWMIDI
help
The ESI Miditerminal 4140 is a 4 In 4 Out MIDI Interface with
additional SMPTE Timecode capabilities for the parallel port.

Say 'Y' to include support for this device.

To compile this driver as a module, chose 'M' here: the module
will be called snd-mts64.

config SND_SERIAL_U16550
tristate "UART16550 serial MIDI driver"
depends on SND
Expand Down
2 changes: 2 additions & 0 deletions sound/drivers/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

snd-dummy-objs := dummy.o
snd-mtpav-objs := mtpav.o
snd-mts64-objs := mts64.o
snd-serial-u16550-objs := serial-u16550.o
snd-virmidi-objs := virmidi.o

Expand All @@ -13,5 +14,6 @@ obj-$(CONFIG_SND_DUMMY) += snd-dummy.o
obj-$(CONFIG_SND_VIRMIDI) += snd-virmidi.o
obj-$(CONFIG_SND_SERIAL_U16550) += snd-serial-u16550.o
obj-$(CONFIG_SND_MTPAV) += snd-mtpav.o
obj-$(CONFIG_SND_MTS64) += snd-mts64.o

obj-$(CONFIG_SND) += opl3/ opl4/ mpu401/ vx/
Loading

0 comments on commit 68ab801

Please sign in to comment.