From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id A68BA344D99; Mon, 20 Apr 2026 15:47:50 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1776700070; cv=none; b=cXbQtYjQgYOivGd6IQn+PDrfEiXpIkiIc38qoXpNUPcjkNlliZRrxf/FbYVpwrcaCwwog+VN4TopHHJOudWfqAfOUdQlwg3m28aAINevEp93FDj9XWBZfq+lNk2w68pOShO9jFNOlRdP71H/amHQ4D9BwFX1hgDyTs5mOrEmQ/8= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1776700070; c=relaxed/simple; bh=pb3vpJ5AVOyXFUaaeMv7rDyK8IA2h2D+vSznXtUo1jU=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=dWQONzGqPKF+UKY6c4l/HIUbBjBY/uM6zlLiL3q3tBUXm7uil95wrO5e5ZGpMiuxRcpG+ZgirTf0wQ+MjWm2ouigWz/bJxBlRpDns0YkwtEGjFzgnpVsBdywR+y/Fs1utviTALQV1jvtHlaxIIxJTkGS87oT3587YNp7qFqUUzg= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=q0LBT2ly; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="q0LBT2ly" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 3CA18C19425; Mon, 20 Apr 2026 15:47:50 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1776700070; bh=pb3vpJ5AVOyXFUaaeMv7rDyK8IA2h2D+vSznXtUo1jU=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=q0LBT2ly1mffw3KgFfX2OFsIiatR7ZNbFh0wuL2+JF50bgymjNc4HISaAVBuBcgSI JvcSUuJpnrDtX3Dn5Mlk5XUUjUYYfyiUO0sC1/bOQC+qjuC/dhbh1m36GVOWi5rA9G 7nP3DuDFLBaGsT279T8v/O5RyiiqVsLgSIAzPtk0= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Yue Wang , Jaroslav Kysela , Takashi Iwai , Phil Willoughby , Takashi Iwai , Sasha Levin Subject: [PATCH 6.19 030/220] ALSA: usb-audio: Fix quirk flags for NeuralDSP Quad Cortex Date: Mon, 20 Apr 2026 17:39:31 +0200 Message-ID: <20260420153935.115672567@linuxfoundation.org> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260420153934.013228280@linuxfoundation.org> References: <20260420153934.013228280@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.19-stable review patch. If anyone has any objections, please let me know. ------------------ From: Phil Willoughby [ Upstream commit bc5b4e5ae1a67700a618328217b6a3bd0f296e97 ] The NeuralDSP Quad Cortex does not support DSD playback. We need this product-specific entry with zero quirks because otherwise it falls through to the vendor-specific entry which marks it as supporting DSD playback. Cc: Yue Wang Cc: Jaroslav Kysela Cc: Takashi Iwai Signed-off-by: Phil Willoughby Link: https://patch.msgid.link/20260328080921.3310-1-willerz@gmail.com Signed-off-by: Takashi Iwai Signed-off-by: Sasha Levin --- sound/usb/quirks.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sound/usb/quirks.c b/sound/usb/quirks.c index a56fb8ef987ea..1686022db0adf 100644 --- a/sound/usb/quirks.c +++ b/sound/usb/quirks.c @@ -2299,6 +2299,8 @@ static const struct usb_audio_quirk_flags_table quirk_flags_table[] = { QUIRK_FLAG_PLAYBACK_FIRST | QUIRK_FLAG_GENERIC_IMPLICIT_FB), DEVICE_FLG(0x13e5, 0x0001, /* Serato Phono */ QUIRK_FLAG_IGNORE_CTL_ERROR), + DEVICE_FLG(0x152a, 0x880a, /* NeuralDSP Quad Cortex */ + 0), /* Doesn't have the vendor quirk which would otherwise apply */ DEVICE_FLG(0x154e, 0x1002, /* Denon DCD-1500RE */ QUIRK_FLAG_ITF_USB_DSD_DAC | QUIRK_FLAG_CTL_MSG_DELAY), DEVICE_FLG(0x154e, 0x1003, /* Denon DA-300USB */ -- 2.53.0