diff options
author | Olivia Mackintosh <livvy@base.nu> | 2021-01-18 16:06:21 +0300 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2021-01-18 19:39:42 +0300 |
commit | b952ac76a20bc0b23cd7e22de19fb407713238a3 (patch) | |
tree | 3cc5c8dde1ab8123ce98e9168ddf8595bdc15e09 /sound/usb/implicit.c | |
parent | c09e28cd1219fd267ed838e1758ff2e7b6ff3ec6 (diff) | |
download | linux-b952ac76a20bc0b23cd7e22de19fb407713238a3.tar.xz |
ALSA: usb-audio: Add support for Pioneer DJM-750
This adds the Pioneer DJ DJM-750 to the quirks table and ensures
skip_pioneer_sync_ep() is (also) called: this device uses the vendor
ID of 0x08e4 (I'm not sure why they use multiple vendor IDs but many
just like to be awkward it seems).
Playback on all 8 channels works. I'll likely keep this working in the
future and submit futher patches and improvements as necessary.
Signed-off-by: Olivia Mackintosh <livvy@base.nu>
Link: https://lore.kernel.org/r/20210118130621.77miiie47wp7mump@base.nu
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/usb/implicit.c')
-rw-r--r-- | sound/usb/implicit.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/usb/implicit.c b/sound/usb/implicit.c index 521cc846d9d9..e7216d0b860d 100644 --- a/sound/usb/implicit.c +++ b/sound/usb/implicit.c @@ -302,7 +302,8 @@ static int audioformat_implicit_fb_quirk(struct snd_usb_audio *chip, /* Pioneer devices with vendor spec class */ if (attr == USB_ENDPOINT_SYNC_ASYNC && alts->desc.bInterfaceClass == USB_CLASS_VENDOR_SPEC && - USB_ID_VENDOR(chip->usb_id) == 0x2b73 /* Pioneer */) { + (USB_ID_VENDOR(chip->usb_id) == 0x2b73 || /* Pioneer */ + USB_ID_VENDOR(chip->usb_id) == 0x08e4 /* Pioneer */)) { if (skip_pioneer_sync_ep(chip, fmt, alts)) return 1; } |