From: Cristian Ciocaltea Date: Tue, 29 Apr 2025 10:29:43 +0000 (+0300) Subject: ASoC: amd: acp: Drop superfluous assignment in acp_sof_probe() X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=85f380f2b9ab6e9a8753626fa3d8a3f4a323043a;p=users%2Fjedix%2Flinux-maple.git ASoC: amd: acp: Drop superfluous assignment in acp_sof_probe() The 'card' pointer is not required to be NULL initialized as it is never accessed before the related memory allocation takes place. Drop the redundant assignment. Signed-off-by: Cristian Ciocaltea Link: https://patch.msgid.link/20250429-acp-sof-probe-assign-v1-1-9784f6eb7660@collabora.com Signed-off-by: Mark Brown --- diff --git a/sound/soc/amd/acp/acp-sof-mach.c b/sound/soc/amd/acp/acp-sof-mach.c index d7b54f12f4062..6215e31eceddf 100644 --- a/sound/soc/amd/acp/acp-sof-mach.c +++ b/sound/soc/amd/acp/acp-sof-mach.c @@ -88,7 +88,7 @@ static struct acp_card_drvdata sof_nau8821_max98388_data = { static int acp_sof_probe(struct platform_device *pdev) { - struct snd_soc_card *card = NULL; + struct snd_soc_card *card; struct device *dev = &pdev->dev; struct snd_soc_acpi_mach *mach = dev_get_platdata(&pdev->dev); const struct dmi_system_id *dmi_id;