From patchwork Sun Jun 21 07:50:05 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurence Tratt X-Patchwork-Id: 192387 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-4.0 required=3.0 tests=DKIM_SIGNED,DKIM_VALID, HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI, SIGNED_OFF_BY, SPF_HELO_NONE, SPF_PASS autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 96F41C433DF for ; Sun, 21 Jun 2020 07:51:10 +0000 (UTC) Received: from alsa0.perex.cz (alsa0.perex.cz [77.48.224.243]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 45261217BA for ; Sun, 21 Jun 2020 07:51:10 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=alsa-project.org header.i=@alsa-project.org header.b="We+GaHcz" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 45261217BA Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=tratt.net Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=alsa-devel-bounces@alsa-project.org Received: from alsa1.perex.cz (alsa1.perex.cz [207.180.221.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by alsa0.perex.cz (Postfix) with ESMTPS id BB3D3166D; Sun, 21 Jun 2020 09:50:18 +0200 (CEST) DKIM-Filter: OpenDKIM Filter v2.11.0 alsa0.perex.cz BB3D3166D DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=alsa-project.org; s=default; t=1592725868; bh=1vzoz3y37Zkrh3RaOWmpw8E1d80b8koKdoCiey0P3ig=; h=Date:From:To:Subject:List-Id:List-Unsubscribe:List-Archive: List-Post:List-Help:List-Subscribe:From; b=We+GaHczKtANUf5tw1NJygnVfF9zPW0TMKsSKoF0T2DqASwHsbgdKZBo+4VkMQNQa OQuowAEymy4GtWvBfYEDW9VMuepCSQXghmueIIUHhmjR1wUk/PIjGwfwDtHZHmT0hO hZqbHwGnQC75NMKD/YiT0wwPJrqATrVdCzo1Wem4= Received: from alsa1.perex.cz (localhost.localdomain [127.0.0.1]) by alsa1.perex.cz (Postfix) with ESMTP id 28D6DF8010E; Sun, 21 Jun 2020 09:50:18 +0200 (CEST) Received: by alsa1.perex.cz (Postfix, from userid 50401) id 86A29F8010E; Sun, 21 Jun 2020 09:50:16 +0200 (CEST) Received: from echo.tratt.net (echo.default.edsfctgx.uk0.bigv.io [IPv6:2001:41c9:1:420::208]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by alsa1.perex.cz (Postfix) with ESMTPS id 52A80F8010E for ; Sun, 21 Jun 2020 09:50:09 +0200 (CEST) DKIM-Filter: OpenDKIM Filter v2.11.0 alsa1.perex.cz 52A80F8010E Received: by echo.tratt.net (Postfix, from userid 1000) id E5F9765F3; Sun, 21 Jun 2020 08:50:02 +0100 (BST) Date: Sun, 21 Jun 2020 08:50:05 +0100 From: Laurence Tratt To: alsa-devel@alsa-project.org Subject: [Resend PATCH] Add implicit feedback quirk for SSL2. Message-ID: <20200621075005.52mjjfc6dtdjnr3h@overdrive.tratt.net> MIME-Version: 1.0 Content-Disposition: inline X-BeenThere: alsa-devel@alsa-project.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: "Alsa-devel mailing list for ALSA developers - http://www.alsa-project.org" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: alsa-devel-bounces@alsa-project.org Sender: "Alsa-devel" As expected, this requires the same quirk as the SSL2+ in order for the clock to sync. This was suggested by, and tested on an SSL2, by Dmitry. Suggested-by: Dmitry Signed-off-by: Laurence Tratt --- sound/usb/pcm.c | 1 + 1 file changed, 1 insertion(+) diff --git sound/usb/pcm.c sound/usb/pcm.c index 84c0ae4319..dc1608bdf6 100644 --- sound/usb/pcm.c +++ sound/usb/pcm.c @@ -367,6 +367,7 @@ static int set_sync_ep_implicit_fb_quirk(struct snd_usb_substream *subs, ifnum = 0; goto add_sync_ep_from_ifnum; case USB_ID(0x07fd, 0x0008): /* MOTU M Series */ + case USB_ID(0x31e9, 0x0001): /* Solid State Logic SSL2 */ case USB_ID(0x31e9, 0x0002): /* Solid State Logic SSL2+ */ ep = 0x81; ifnum = 2;