diff options
author | Clemens Ladisch <clemens@ladisch.de> | 2005-10-05 07:23:19 -0400 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2005-10-07 08:46:42 -0400 |
commit | a25f175c2f6962c38cdbacfc4b66b297f4fb54b2 (patch) | |
tree | 37e3688f74229d36e15db04d3992d80e2b401583 /sound/usb | |
parent | 9c9565f709f28c12dadfe74b31f2c86ffd75f71e (diff) |
[ALSA] usb-audio: add MIDI quirk for Hercules DJ Console
USB generic driver
Add a quirk entry for the external MIDI ports of the
Windows Edition of the Hercules DJ Console.
Signed-off-by: Clemens Ladisch <clemens@ladisch.de>
Diffstat (limited to 'sound/usb')
-rw-r--r-- | sound/usb/usbquirks.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/sound/usb/usbquirks.h b/sound/usb/usbquirks.h index 370f0e3c6e28..948759da6563 100644 --- a/sound/usb/usbquirks.h +++ b/sound/usb/usbquirks.h | |||
@@ -1028,6 +1028,27 @@ YAMAHA_DEVICE(0x7010, "UB99"), | |||
1028 | } | 1028 | } |
1029 | }, | 1029 | }, |
1030 | 1030 | ||
1031 | /* Guillemot devices */ | ||
1032 | { | ||
1033 | /* | ||
1034 | * This is for the "Windows Edition" where the external MIDI ports are | ||
1035 | * the only MIDI ports; the control data is reported through HID | ||
1036 | * interfaces. The "Macintosh Edition" has ID 0xd002 and uses standard | ||
1037 | * compliant USB MIDI ports for external MIDI and controls. | ||
1038 | */ | ||
1039 | USB_DEVICE_VENDOR_SPEC(0x06f8, 0xb000), | ||
1040 | .driver_info = (unsigned long) & (const snd_usb_audio_quirk_t) { | ||
1041 | .vendor_name = "Hercules", | ||
1042 | .product_name = "DJ Console (WE)", | ||
1043 | .ifnum = 4, | ||
1044 | .type = QUIRK_MIDI_FIXED_ENDPOINT, | ||
1045 | .data = & (const snd_usb_midi_endpoint_info_t) { | ||
1046 | .out_cables = 0x0001, | ||
1047 | .in_cables = 0x0001 | ||
1048 | } | ||
1049 | } | ||
1050 | }, | ||
1051 | |||
1031 | /* Midiman/M-Audio devices */ | 1052 | /* Midiman/M-Audio devices */ |
1032 | { | 1053 | { |
1033 | USB_DEVICE_VENDOR_SPEC(0x0763, 0x1002), | 1054 | USB_DEVICE_VENDOR_SPEC(0x0763, 0x1002), |