From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 1AC53173; Tue, 30 Sep 2025 15:02:37 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1759244560; cv=none; b=ieuP0PKb9FAwArMP8jEVrnfHdnEkcMkrwFmzfdFfm4Eh4OHLX/LYd+lGuxiOocAHiyTrWFw6N7If9PIx8YlXEK8idrpsP9jbKWnQiHgzm5+70gZMWDy9tN0jAJQ4RjwzTqF/XFO5cu0Wjge1xnBzTEiihao6qWCwsfeqQ1py6EA= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1759244560; c=relaxed/simple; bh=lxin8/TFbNd/TVqmUTUG4PucwPt5V1Gi6768aWmMqJQ=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=bXSIDsuN6Vy7drC1d54mXDqFDWS/j0WQoJGm+0SEa+QAXkHN6ORcnPN6vbSz4CP1iGjn7NtwiD0SWyw7iX5werfKxEwvDe3h93gcoRZq1+35llTROCvRxGAhP06TV6T7NLaQz6oMpG43jNYQ/CUfk1BsbykYI3WIIf4lCv5Xqm4= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=TfmHrlXY; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="TfmHrlXY" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 317CCC4CEF0; Tue, 30 Sep 2025 15:02:37 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1759244557; bh=lxin8/TFbNd/TVqmUTUG4PucwPt5V1Gi6768aWmMqJQ=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=TfmHrlXYuFx9ddUoI3Q7OppyCLjw44GoEbwEiZyOOMGyUMs8t280A4K4HmMRCzQGn PM2o4UEUcu0VXu/WplqkHz2R/LwwL31Lst6K89REBtcoGTy6vXRWUWa+QYFzqdJGn9 iRIoBDyB7TlYZOg311R+918YzdKGuzK3qEs3zqQQ= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Jihed Chaibi , Krzysztof Kozlowski , Gregory CLEMENT , Sasha Levin Subject: [PATCH 6.16 043/143] ARM: dts: kirkwood: Fix sound DAI cells for OpenRD clients Date: Tue, 30 Sep 2025 16:46:07 +0200 Message-ID: <20250930143832.952530719@linuxfoundation.org> X-Mailer: git-send-email 2.51.0 In-Reply-To: <20250930143831.236060637@linuxfoundation.org> References: <20250930143831.236060637@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.16-stable review patch. If anyone has any objections, please let me know. ------------------ From: Jihed Chaibi [ Upstream commit 29341c6c18b8ad2a9a4a68a61be7e1272d842f21 ] A previous commit changed the '#sound-dai-cells' property for the kirkwood audio controller from 1 to 0 in the kirkwood.dtsi file, but did not update the corresponding 'sound-dai' property in the kirkwood-openrd-client.dts file. This created a mismatch, causing a dtbs_check validation error where the dts provides one cell (<&audio0 0>) while the .dtsi expects zero. Remove the extraneous cell from the 'sound-dai' property to fix the schema validation warning and align with the updated binding. Fixes: e662e70fa419 ("arm: dts: kirkwood: fix error in #sound-dai-cells size") Signed-off-by: Jihed Chaibi Reviewed-by: Krzysztof Kozlowski Signed-off-by: Gregory CLEMENT Signed-off-by: Sasha Levin --- arch/arm/boot/dts/marvell/kirkwood-openrd-client.dts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/boot/dts/marvell/kirkwood-openrd-client.dts b/arch/arm/boot/dts/marvell/kirkwood-openrd-client.dts index d4e0b8150a84c..cf26e2ceaaa07 100644 --- a/arch/arm/boot/dts/marvell/kirkwood-openrd-client.dts +++ b/arch/arm/boot/dts/marvell/kirkwood-openrd-client.dts @@ -38,7 +38,7 @@ simple-audio-card,mclk-fs = <256>; simple-audio-card,cpu { - sound-dai = <&audio0 0>; + sound-dai = <&audio0>; }; simple-audio-card,codec { -- 2.51.0