From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (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 46BED47AF69; Sat, 12 Sep 2026 16:45:18 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1789231519; cv=none; b=KWP+wCPBmA7iHnWvc5xYdZJKxnGv2WSppW9eJSBKlXmi0UwMWzajfauv5MCEP9oBpxxQFpa6QiGytEOl8kOATW1+skPUQSA+ImdNtkKDLjlsAnZV4nice2wiIUxwE7ZTqQHaD1Yd82GOt7kslVSd8J6jNGiLx1RYP63vz4GRdZs= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1789231519; c=relaxed/simple; bh=OOiTB84KtvZrYw28P7Eo5VGzSEJZ/lYCaWJPONYT62M=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=FtoKkxpZ01OQuln9eQnnbPYn9EKeywkgk+jK9np3U/W+yVILaID5YoaWFT/Hdj4rMw7F8Wdgm+uDky4eTelBvJSXg6rq8bZyW9f1cw9k+iPT97DJufd6vUnBbi9V/Ls6w6B+deVv9p5wWLEFB++8e6DuxvToec4vum0A44tATiA= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=TGcS2gLb; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="TGcS2gLb" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 3C1251F000FF; Sat, 12 Sep 2026 16:45:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1789231518; bh=BWOwERGJdKRgRLl3tsZ2cf5ajqOCGS9roWsTEpvo6Xs=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=TGcS2gLb73eq41AKJRfk4Cee84hN0tzZws9KTL/LzfVvzpN3LFFckhAaGXAUIImOZ t8GVvNwnymrrOKhgQJCVPXryQnDJDuRItt7S1YF0O/nrZLDJmQ311Ntmz8YNs83Pho 5ju8uiBhEtjSaeTJ6gxzPE0ibWJEWbMYQZwNDeK0= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, LiangCheng Wang , Mark Brown , Sasha Levin Subject: [PATCH 6.1 0972/1191] ASoC: fsl-asoc-card: defer probe when the CPU DAI device is not ready Date: Sat, 12 Sep 2026 09:01:40 +0200 Message-ID: <20260912065610.044477328@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260912065548.086904252@linuxfoundation.org> References: <20260912065548.086904252@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: LiangCheng Wang [ Upstream commit 0286324da660875dc504fd65b3be87e9c8b9a547 ] fsl_asoc_card_probe() hard-fails with -EINVAL when the CPU DAI (SAI) platform device is not found. Like the codec, the CPU DAI may just be probed later than the machine driver; the order is not guaranteed and varies across kernel versions, so a permanent -EINVAL leaves the card unregistered with no analog playback or capture. Defer probe instead, mirroring commit e396dec46c56 ("ASoC: fsl-asoc-card: Defer probe when fail to find codec device"). Tested on i.MX8MP with an ALC5672 on SAI3: the card that failed to register on v6.18 now comes up during boot. Fixes: 708b4351f08c ("ASoC: fsl: Add Freescale Generic ASoC Sound Card with ASRC support") Signed-off-by: LiangCheng Wang Link: https://patch.msgid.link/20260805-fsl-asoc-defer-cpu-dai-v1-1-43f7f538e384@gmail.com Signed-off-by: Mark Brown Signed-off-by: Sasha Levin --- sound/soc/fsl/fsl-asoc-card.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sound/soc/fsl/fsl-asoc-card.c b/sound/soc/fsl/fsl-asoc-card.c index 8b29099975c91..cc0d5e241e51e 100644 --- a/sound/soc/fsl/fsl-asoc-card.c +++ b/sound/soc/fsl/fsl-asoc-card.c @@ -559,8 +559,8 @@ static int fsl_asoc_card_probe(struct platform_device *pdev) cpu_pdev = of_find_device_by_node(cpu_np); if (!cpu_pdev) { - dev_err(&pdev->dev, "failed to find CPU DAI device\n"); - ret = -EINVAL; + ret = dev_err_probe(&pdev->dev, -EPROBE_DEFER, + "failed to find CPU DAI device\n"); goto fail; } -- 2.53.0