mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-04-04 13:34:39 +00:00
ALSA: usb-audio: FT C400 sync playback EP to capture EP
The playback endpoint uses implicit feedback mode, similar to the M-Audio FTU. Like with the FTU, we need to associate the sync pipe ourselves. Signed-off-by: Eldad Zack <eldad@fogrefinery.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
09d8e3a71d
commit
ca10a7ebdf
1 changed files with 13 additions and 0 deletions
|
@ -362,6 +362,19 @@ static int set_format(struct snd_usb_substream *subs, struct audioformat *fmt)
|
||||||
attr = fmt->ep_attr & USB_ENDPOINT_SYNCTYPE;
|
attr = fmt->ep_attr & USB_ENDPOINT_SYNCTYPE;
|
||||||
|
|
||||||
switch (subs->stream->chip->usb_id) {
|
switch (subs->stream->chip->usb_id) {
|
||||||
|
case USB_ID(0x0763, 0x2030): /* M-Audio Fast Track C400 */
|
||||||
|
if (is_playback) {
|
||||||
|
implicit_fb = 1;
|
||||||
|
ep = 0x81;
|
||||||
|
iface = usb_ifnum_to_if(dev, 3);
|
||||||
|
|
||||||
|
if (!iface || iface->num_altsetting == 0)
|
||||||
|
return -EINVAL;
|
||||||
|
|
||||||
|
alts = &iface->altsetting[1];
|
||||||
|
goto add_sync_ep;
|
||||||
|
}
|
||||||
|
break;
|
||||||
case USB_ID(0x0763, 0x2080): /* M-Audio FastTrack Ultra */
|
case USB_ID(0x0763, 0x2080): /* M-Audio FastTrack Ultra */
|
||||||
case USB_ID(0x0763, 0x2081):
|
case USB_ID(0x0763, 0x2081):
|
||||||
if (is_playback) {
|
if (is_playback) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue