From 1a41aaecbb289d7957abcae449e8f2fc5e29fc96 Mon Sep 17 00:00:00 2001 From: Nils Freydank Date: Mon, 14 Apr 2025 23:59:59 +0200 Subject: [PATCH] pygoscelis: Disable TAS2781 codec, fix compilation On the bump to 6.14.y the config entry CONFIG_SND_HDA_SCODEC_TAS2781_SPI was automatically enabled. This triggered the following compilation bugs: ERROR: modpost: "crc8" [sound/pci/hda/snd-hda-scodec-tas2781-spi.ko] undefined! ERROR: modpost: "crc8_populate_msb" [sound/pci/hda/snd-hda-scodec-tas2781-spi.ko] undefined! In my config, crc8 is disabled and was not enabled again by the mentioned TAS2781 SPI codec that itself should not have been enabled at all. --- pygoscelis-config | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pygoscelis-config b/pygoscelis-config index a8fa9d1..b0db450 100644 --- a/pygoscelis-config +++ b/pygoscelis-config @@ -4286,7 +4286,7 @@ CONFIG_SND_HDA_PATCH_LOADER=y # CONFIG_SND_HDA_SCODEC_CS35L56_I2C is not set # CONFIG_SND_HDA_SCODEC_CS35L56_SPI is not set # CONFIG_SND_HDA_SCODEC_TAS2781_I2C is not set -CONFIG_SND_HDA_SCODEC_TAS2781_SPI=m +# CONFIG_SND_HDA_SCODEC_TAS2781_SPI is not set # CONFIG_SND_HDA_CODEC_REALTEK is not set CONFIG_SND_HDA_CODEC_ANALOG=m # CONFIG_SND_HDA_CODEC_SIGMATEL is not set @@ -4663,7 +4663,7 @@ CONFIG_SND_SOC_DMIC=m # CONFIG_SND_SOC_WM8978 is not set # CONFIG_SND_SOC_WM8985 is not set # CONFIG_SND_SOC_MT6351 is not set -CONFIG_SND_SOC_MT6357=m +# CONFIG_SND_SOC_MT6357 is not set # CONFIG_SND_SOC_MT6358 is not set # CONFIG_SND_SOC_MT6660 is not set # CONFIG_SND_SOC_NAU8315 is not set