From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on sa.local.altlinux.org X-Spam-Level: X-Spam-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham autolearn_force=no version=3.4.1 From: kovalev@altlinux.org To: devel-kernel@lists.altlinux.org Date: Mon, 29 Jul 2024 08:10:22 +0300 Message-Id: <20240729051022.98198-34-kovalev@altlinux.org> X-Mailer: git-send-email 2.33.8 In-Reply-To: <20240729051022.98198-1-kovalev@altlinux.org> References: <20240729051022.98198-1-kovalev@altlinux.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [d-kernel] [PATCH 33/33] ASoC: Intel: sof-essx8336: force card->name for the es8326 codec X-BeenThere: devel-kernel@lists.altlinux.org X-Mailman-Version: 2.1.12 Precedence: list Reply-To: ALT Linux kernel packages development List-Id: ALT Linux kernel packages development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Jul 2024 05:10:54 -0000 Archived-At: List-Archive: List-Post: From: Vasiliy Kovalev This is done for the subsequent correct configuration of UCM alsa. Thanks to the Aquarius developers for this workaround. Signed-off-by: Vasiliy Kovalev --- sound/soc/intel/boards/sof_es8336.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sound/soc/intel/boards/sof_es8336.c b/sound/soc/intel/boards/sof_es8336.c index db958e3911d9d3..bd07b90e1ed2cb 100644 --- a/sound/soc/intel/boards/sof_es8336.c +++ b/sound/soc/intel/boards/sof_es8336.c @@ -724,8 +724,10 @@ static int sof_es8336_probe(struct platform_device *pdev) dai_links[0].codecs->name = codec_name; /* also fixup codec dai name if relevant */ - if (!strncmp(mach->id, "ESSX8326", SND_ACPI_I2C_ID_LEN)) + if (!strncmp(mach->id, "ESSX8326", SND_ACPI_I2C_ID_LEN)) { dai_links[0].codecs->dai_name = "ES8326 HiFi"; + card->name = "essx8326"; + } } else { dev_err(dev, "Error cannot find '%s' dev\n", mach->id); return -ENXIO; -- 2.33.8