diff options
author | Brent Cook <busterbcook@yahoo.com> | 2006-01-10 08:27:20 -0500 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2006-03-22 04:22:14 -0500 |
commit | e03173fce2f2c233b755f2d668d6d4247a717453 (patch) | |
tree | c1ba0936ae513f308fda33db69fc3d626d2a9c99 /sound/usb/usbmidi.c | |
parent | 34226c4239861654c69888e6e98973b2cc908c0b (diff) |
[ALSA] Add support for EDIROL UM-3ex
Modules: USB generic driver
This is my naive attempt at adding ALSA device support. The attached
patch provides support for the EDIROL UM-3ex. This is a 3-port USB midi
interface with a built-in USB hub and the ability to chain 2 other
UM-3x's in a master-slave configuration. I only have one, so I do not
know how this works in practice.
Though this is a 3-port device, I had to throw in that 4th 'Control' interface
to the definition in order to make the 3rd port work. If I set in/out_cables
to 0x000b, a 3rd interface appears on the driver, but it does nothing.
Changing it to 0x000f allows the 3rd interface to work, but of course
interface 4 does not work because it does not exist.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/usb/usbmidi.c')
-rw-r--r-- | sound/usb/usbmidi.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sound/usb/usbmidi.c b/sound/usb/usbmidi.c index f15b021c3ce8..905e33e60681 100644 --- a/sound/usb/usbmidi.c +++ b/sound/usb/usbmidi.c | |||
@@ -1092,6 +1092,8 @@ static struct { | |||
1092 | { USB_ID(0x086a, 0x0001), 8, "%s Broadcast" }, | 1092 | { USB_ID(0x086a, 0x0001), 8, "%s Broadcast" }, |
1093 | { USB_ID(0x086a, 0x0002), 8, "%s Broadcast" }, | 1093 | { USB_ID(0x086a, 0x0002), 8, "%s Broadcast" }, |
1094 | { USB_ID(0x086a, 0x0003), 4, "%s Broadcast" }, | 1094 | { USB_ID(0x086a, 0x0003), 4, "%s Broadcast" }, |
1095 | /* Edirol UM-3ex */ | ||
1096 | { USB_ID(0x0582, 0x009a), 3, "%s Control" }, | ||
1095 | }; | 1097 | }; |
1096 | 1098 | ||
1097 | static void snd_usbmidi_init_substream(struct snd_usb_midi* umidi, | 1099 | static void snd_usbmidi_init_substream(struct snd_usb_midi* umidi, |