From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id AA539C433F5 for ; Thu, 4 Nov 2021 14:14:59 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 97F7A611F2 for ; Thu, 4 Nov 2021 14:14:59 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231814AbhKDORf (ORCPT ); Thu, 4 Nov 2021 10:17:35 -0400 Received: from mail.kernel.org ([198.145.29.99]:45754 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231804AbhKDORN (ORCPT ); Thu, 4 Nov 2021 10:17:13 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id 6B977610FD; Thu, 4 Nov 2021 14:14:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1636035275; bh=77wi4y/lbMM1urKFvGO8y+WMJbAl1RX+grqrk/Rarng=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=U9zuRpAoMJvlk4Jmp51uo5acxsrWcwUxfUZoAIVK3Ml7yiS/3DiSwkarhU/cD4+ba oYygJ4ozJ3gi0xL2Vi95ymoINlinSrjE7CLSoaSxBT9p7pmNEfld+624UxQ4yYcUjM u/6KgvPY0EqbjeUdrpaNWCXa+dAS4rTXCDlkm7to= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org, stable@vger.kernel.org Cc: Greg Kroah-Hartman , Takashi Iwai Subject: [PATCH 5.14 16/16] ALSA: usb-audio: Add Audient iD14 to mixer map quirk table Date: Thu, 4 Nov 2021 15:12:47 +0100 Message-Id: <20211104141200.406373240@linuxfoundation.org> X-Mailer: git-send-email 2.33.1 In-Reply-To: <20211104141159.863820939@linuxfoundation.org> References: <20211104141159.863820939@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Takashi Iwai commit df0380b9539b04c1ae8854a984098da06d5f1e67 upstream. This is a fix equivalent with the upstream commit df0380b9539b ("ALSA: usb-audio: Add quirk for Audient iD14"), adapted to the earlier kernels up to 5.14.y. It adds the quirk entry with the old ignore_ctl_error flag to the usbmix_ctl_maps, instead. The original commit description says: Audient iD14 (2708:0002) may get a control message error that interferes the operation e.g. with alsactl. Add the quirk to ignore such errors like other devices. Signed-off-by: Takashi Iwai Signed-off-by: Greg Kroah-Hartman --- sound/usb/mixer_maps.c | 4 ++++ 1 file changed, 4 insertions(+) --- a/sound/usb/mixer_maps.c +++ b/sound/usb/mixer_maps.c @@ -529,6 +529,10 @@ static const struct usbmix_ctl_map usbmi .map = maya44_map, }, { + .id = USB_ID(0x2708, 0x0002), /* Audient iD14 */ + .ignore_ctl_error = 1, + }, + { /* KEF X300A */ .id = USB_ID(0x27ac, 0x1000), .map = scms_usb3318_map,