mirror of https://gitee.com/openkylin/linux.git
ALSA: usb-audio: add Edirol PCR-1 PCM support
Add a quirk for the other logical device of the PCR-1 so that not only the MIDI interface but also the audio interface works. Signed-off-by: Clemens Ladisch <clemens@ladisch.de> Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
65f04443c9
commit
aa70201fdc
|
@ -1135,12 +1135,35 @@ YAMAHA_DEVICE(0x7010, "UB99"),
|
||||||
.type = QUIRK_MIDI_STANDARD_INTERFACE
|
.type = QUIRK_MIDI_STANDARD_INTERFACE
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
/* has ID 0x0066 when not in "Advanced Driver" mode */
|
||||||
|
USB_DEVICE(0x0582, 0x0064),
|
||||||
|
.driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
|
||||||
|
/* .vendor_name = "EDIROL", */
|
||||||
|
/* .product_name = "PCR-1", */
|
||||||
|
.ifnum = QUIRK_ANY_INTERFACE,
|
||||||
|
.type = QUIRK_COMPOSITE,
|
||||||
|
.data = (const struct snd_usb_audio_quirk[]) {
|
||||||
|
{
|
||||||
|
.ifnum = 1,
|
||||||
|
.type = QUIRK_AUDIO_STANDARD_INTERFACE
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.ifnum = 2,
|
||||||
|
.type = QUIRK_AUDIO_STANDARD_INTERFACE
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.ifnum = -1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
/* has ID 0x0067 when not in "Advanced Driver" mode */
|
/* has ID 0x0067 when not in "Advanced Driver" mode */
|
||||||
USB_DEVICE(0x0582, 0x0065),
|
USB_DEVICE(0x0582, 0x0065),
|
||||||
.driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
|
.driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
|
||||||
.vendor_name = "EDIROL",
|
/* .vendor_name = "EDIROL", */
|
||||||
.product_name = "PCR-1",
|
/* .product_name = "PCR-1", */
|
||||||
.ifnum = 0,
|
.ifnum = 0,
|
||||||
.type = QUIRK_MIDI_FIXED_ENDPOINT,
|
.type = QUIRK_MIDI_FIXED_ENDPOINT,
|
||||||
.data = & (const struct snd_usb_midi_endpoint_info) {
|
.data = & (const struct snd_usb_midi_endpoint_info) {
|
||||||
|
|
Loading…
Reference in New Issue