diff options
author | Clemens Ladisch <clemens@ladisch.de> | 2006-01-16 08:03:52 +0100 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2006-03-22 10:23:47 +0100 |
commit | 415b09e4559b0c95666af3cebe918386212aef98 (patch) | |
tree | 970d7ea8bdfe38227cadfac5e77a841714db0e98 /sound/usb | |
parent | f7cbb7fcd3bae5264a079e06411b35366da9bd4d (diff) |
[ALSA] usb-audio: add Edirol PC-50 support
Modules: USB generic driver
Add a quirk entry for the Edirol PC-50.
Signed-off-by: Clemens Ladisch <clemens@ladisch.de>
Diffstat (limited to 'sound/usb')
-rw-r--r-- | sound/usb/usbquirks.h | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/sound/usb/usbquirks.h b/sound/usb/usbquirks.h index 381d9a8ccee..a433c6f2128 100644 --- a/sound/usb/usbquirks.h +++ b/sound/usb/usbquirks.h @@ -1094,7 +1094,20 @@ YAMAHA_DEVICE(0x7010, "UB99"), /* TODO: add Roland G-70 support */ /* TODO: add Roland V-SYNTH XT support */ /* TODO: add BOSS GT-PRO support */ - /* TODO: add Edirol PC-50 support */ +{ + /* has ID 0x008c when not in "Advanced Driver" mode */ + USB_DEVICE(0x0582, 0x008b), + .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) { + .vendor_name = "EDIROL", + .product_name = "PC-50", + .ifnum = 0, + .type = QUIRK_MIDI_FIXED_ENDPOINT, + .data = & (const struct snd_usb_midi_endpoint_info) { + .out_cables = 0x0001, + .in_cables = 0x0001 + } + } +}, /* TODO: add Edirol PC-80 support */ /* TODO: add Edirol UA-1EX support */ { |