From patchwork Tue Oct 27 13:46:40 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Greg Kroah-Hartman X-Patchwork-Id: 312048 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=-9.8 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED, DKIM_VALID, HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=unavailable 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 81AD0C64E69 for ; Tue, 27 Oct 2020 17:25:51 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 2990621D42 for ; Tue, 27 Oct 2020 17:25:51 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1603819551; bh=np69AsM3udaKUpjwndbbBcSbkDZCkgDrrmooXS4GtxM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=lM6tVnXFDRdn9xnad/HcUWCtoA/LxWnJ9LTftppIXc8kDWwvf032DJChLEzWQuj3m J7vwn454HJcBlgLHgzZFMWPio+cM8DNhKe54HfvWfvCFOVeAablJs54qs9t7kV0UJy aZxuQkK06PEUWM7WbNRxCkTn1MFrYZo3s5TuR848= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1775378AbgJ0Owo (ORCPT ); Tue, 27 Oct 2020 10:52:44 -0400 Received: from mail.kernel.org ([198.145.29.99]:49964 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1771547AbgJ0OuC (ORCPT ); Tue, 27 Oct 2020 10:50:02 -0400 Received: from localhost (83-86-74-64.cable.dynamic.v4.ziggo.nl [83.86.74.64]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 18E67207DE; Tue, 27 Oct 2020 14:50:00 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1603810201; bh=np69AsM3udaKUpjwndbbBcSbkDZCkgDrrmooXS4GtxM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=rxBW0jGWdrgPwatq/SaCkNofN5DtSjvsrrOC+qCGtJJuDyj15W4lnUyOu7vjvRwmf aYGnQBWLFjpiDLnsvT1cjHuKAUnXhIlMoyP7EswJPMPlajGXylDQ6Cu/FGfqW1stYb P/E4etQ7RcZzaEENMLL7HRksNyNC7ce5WXc/mzfU= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Lukasz Halman , Takashi Iwai Subject: [PATCH 5.8 057/633] ALSA: usb-audio: Line6 Pod Go interface requires static clock rate quirk Date: Tue, 27 Oct 2020 14:46:40 +0100 Message-Id: <20201027135525.370361872@linuxfoundation.org> X-Mailer: git-send-email 2.29.1 In-Reply-To: <20201027135522.655719020@linuxfoundation.org> References: <20201027135522.655719020@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org From: Lukasz Halman commit 7da4c510abff8ad47eb2d7cc9a97def5a411947f upstream. Recently released Line6 Pod Go requires static clock rate quirk to make its usb audio interface working. Added its usb id to the list of similar line6 devices. Signed-off-by: Lukasz Halman Cc: Link: https://lore.kernel.org/r/20201020061409.GA24382@TAG009442538903 Signed-off-by: Takashi Iwai Signed-off-by: Greg Kroah-Hartman --- sound/usb/format.c | 1 + 1 file changed, 1 insertion(+) --- a/sound/usb/format.c +++ b/sound/usb/format.c @@ -406,6 +406,7 @@ static int line6_parse_audio_format_rate case USB_ID(0x0e41, 0x4242): /* Line6 Helix Rack */ case USB_ID(0x0e41, 0x4244): /* Line6 Helix LT */ case USB_ID(0x0e41, 0x4246): /* Line6 HX-Stomp */ + case USB_ID(0x0e41, 0x4247): /* Line6 Pod Go */ case USB_ID(0x0e41, 0x4248): /* Line6 Helix >= fw 2.82 */ case USB_ID(0x0e41, 0x4249): /* Line6 Helix Rack >= fw 2.82 */ case USB_ID(0x0e41, 0x424a): /* Line6 Helix LT >= fw 2.82 */