diff options
author | Clemens Ladisch <clemens@ladisch.de> | 2005-07-25 16:17:29 +0200 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2005-07-28 12:22:37 +0200 |
commit | f38275fe994c333b809796230f4f98090f8d919b (patch) | |
tree | 1eea6ae95c6e54202e674a66306a8763df924166 /sound/usb/usbmidi.c | |
parent | d06e4c4001cf26147a6af0718703368944f0df32 (diff) | |
download | op-kernel-dev-f38275fe994c333b809796230f4f98090f8d919b.zip op-kernel-dev-f38275fe994c333b809796230f4f98090f8d919b.tar.gz |
[ALSA] usb-audio - add support for Miditech USB MIDI keyboards
USB generic driver
Add support for Miditech Midistart and MidiStudio keyboards (another
case of devices using the standard protocol but having no descriptors).
Signed-off-by: Clemens Ladisch <clemens@ladisch.de>
Diffstat (limited to 'sound/usb/usbmidi.c')
-rw-r--r-- | sound/usb/usbmidi.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sound/usb/usbmidi.c b/sound/usb/usbmidi.c index 5c75487..5778a9b 100644 --- a/sound/usb/usbmidi.c +++ b/sound/usb/usbmidi.c @@ -1515,6 +1515,9 @@ int snd_usb_create_midi_interface(snd_usb_audio_t* chip, sizeof(snd_usb_midi_endpoint_info_t)); err = snd_usbmidi_detect_endpoints(umidi, &endpoints[0], 1); break; + case QUIRK_MIDI_MIDITECH: + err = snd_usbmidi_detect_per_port_endpoints(umidi, endpoints); + break; default: snd_printd(KERN_ERR "invalid quirk type %d\n", quirk->type); err = -ENXIO; |