Skip to content

Commit 86c96e7

Browse files
ebiggerstiwai
authored andcommitted
ALSA: hda/tas2781: select CRC32 instead of CRC32_SARWATE
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: 5be27f1 ("ALSA: hda/tas2781: Add tas2781 HDA driver") Cc: stable@vger.kernel.org Signed-off-by: Eric Biggers <ebiggers@google.com> Link: https://patch.msgid.link/20241020175624.7095-1-ebiggers@kernel.org Signed-off-by: Takashi Iwai <tiwai@suse.de>
1 parent 35fdc6e commit 86c96e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sound/pci/hda/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ config SND_HDA_SCODEC_TAS2781_I2C
198198
depends on SND_SOC
199199
select SND_SOC_TAS2781_COMLIB
200200
select SND_SOC_TAS2781_FMWLIB
201-
select CRC32_SARWATE
201+
select CRC32
202202
help
203203
Say Y or M here to include TAS2781 I2C HD-audio side codec support
204204
in snd-hda-intel driver, such as ALC287.

0 commit comments

Comments
 (0)