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 06FA818EFC8; Mon, 28 Oct 2024 06:53:53 +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=1730098433; cv=none; b=BDAN+bLZvCqoCnnnF3iv2PUeL3Qeka9i8epdMnbyjjS8+ODDtvqfNgfigUEUDyJI3ZOUGEkE5uXetFfWFYR4NpebHBPf24eEV9Vh5HdgVIIP8UgFz/6mIhsndFACdp4KVDSD3hgPRLr6inpfkUiXWPRjSuqTXOCyOZanMRCIyqY= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1730098433; c=relaxed/simple; bh=quXZi7lZuBb6XAx2gjbcEsFZIG6g1XwN4VWK3recQVI=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=SeyNI2y5UdfVGzHb2KOkTQSN2lPmsCVfsZhjZj3ucGBAW1haL4VbHrBZLesm8Q54yi34YdTPCg2KGV/2njMZDwsDrdZumaWGUV4zI/3jyu1o0jvZUsj8VzIJI1oC+dOCTVo4ux3u4cEDSbyjdPvJ5rorVhQMPAYU6YEc8EHSxxM= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=qw6OOzi2; 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="qw6OOzi2" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 9E9BFC4CEC3; Mon, 28 Oct 2024 06:53:52 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1730098432; bh=quXZi7lZuBb6XAx2gjbcEsFZIG6g1XwN4VWK3recQVI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=qw6OOzi2bfwiTmqBQAcPYwaOqSlbwDebQUZ4ZE7PH4j2GElmzK2b4T1H8ZQfeUxKA 2SOLEmrsDASuN1wQlES/Xs3GcS5fy5ZgTlyoKSw6R210BEIAsaUrB0rsUFG4aBEqnq PLrV8N7JRb4QAvmtsuMys6AsWzcVM6brp1IOi9hM= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Eric Biggers , Takashi Iwai Subject: [PATCH 6.11 225/261] ALSA: hda/tas2781: select CRC32 instead of CRC32_SARWATE Date: Mon, 28 Oct 2024 07:26:07 +0100 Message-ID: <20241028062317.752358251@linuxfoundation.org> X-Mailer: git-send-email 2.47.0 In-Reply-To: <20241028062312.001273460@linuxfoundation.org> References: <20241028062312.001273460@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.11-stable review patch. If anyone has any objections, please let me know. ------------------ From: Eric Biggers commit 86c96e7289c5758284b562ac7b5c94429f48d2d9 upstream. Fix the kconfig option for the tas2781 HDA driver to select CRC32 rather than CRC32_SARWATE. CRC32_SARWATE is an option from the kconfig 'choice' that selects the specific CRC32 implementation. Selecting a 'choice' option seems to have no effect, but even if it did work, it would be incorrect for a random driver to override the user's choice. CRC32 is the correct option to select for crc32() to be available. Fixes: 5be27f1e3ec9 ("ALSA: hda/tas2781: Add tas2781 HDA driver") Cc: stable@vger.kernel.org Signed-off-by: Eric Biggers Link: https://patch.msgid.link/20241020175624.7095-1-ebiggers@kernel.org Signed-off-by: Takashi Iwai Signed-off-by: Greg Kroah-Hartman --- sound/pci/hda/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/sound/pci/hda/Kconfig +++ b/sound/pci/hda/Kconfig @@ -198,7 +198,7 @@ config SND_HDA_SCODEC_TAS2781_I2C depends on SND_SOC select SND_SOC_TAS2781_COMLIB select SND_SOC_TAS2781_FMWLIB - select CRC32_SARWATE + select CRC32 help Say Y or M here to include TAS2781 I2C HD-audio side codec support in snd-hda-intel driver, such as ALC287.