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 0DD8B4279E6; Tue, 31 Mar 2026 16:38:53 +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=1774975133; cv=none; b=K+O25TuwdA5gDk0wcmD5NaSZLDsMSdNzbAE6T4BvYnOM+O9/v7Jjv37GZfR/YVYTGH5oyDHSFbVLI4jKEygqGNIEYHXQlRunVDCSiONVmQ0BlNELrjnyW8bkj+hKWytE2aBiIuGGTelTOrEICTnWnCw7m3FGiLhF+2Jtt44b6jY= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1774975133; c=relaxed/simple; bh=ZNwBdPY9ZC4TkXtlZPMTbP2itWbRM+U2ZVsEbm6+seQ=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=dmCUYIp4JAertlWxYjCjRNbjTHwh7lctsqQRJqdrhrb9dtn9DAtyRVbKZ3VUQqgFRIf4iM2pvKrG0/Y5d5oOa6mXdy8nDdLGuOjOXSob+GqGqqjGXuKwwsye9fsehCax4AK/HJm6Gq9iu/wdULI93+oVXlzHf7cROmnAfECuOcE= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=y0SL83nI; 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="y0SL83nI" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 95A05C19423; Tue, 31 Mar 2026 16:38:52 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1774975132; bh=ZNwBdPY9ZC4TkXtlZPMTbP2itWbRM+U2ZVsEbm6+seQ=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=y0SL83nIYRWRdvEqnwzV9eKfpFxfTjDCaT3Paxk3zADdCP6dx9TLyfGVaPyY7GBM1 mbC03wipch/VLsA2PgVKH7yVKILqgibExKKcfoxRZLylkF0/4Zr2ZUT7hkxaeviwUb zJGsI4gVOmItXYc8Eu9cMcrp7MqDzUs/dtwMbOXc= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Jihed Chaibi , Olivier Moysan , Mark Brown , Sasha Levin Subject: [PATCH 6.19 177/342] ASoC: dt-bindings: stm32: Fix incorrect compatible string in stm32h7-sai match Date: Tue, 31 Mar 2026 18:20:10 +0200 Message-ID: <20260331161805.520147497@linuxfoundation.org> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260331161758.909578033@linuxfoundation.org> References: <20260331161758.909578033@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.19-stable review patch. If anyone has any objections, please let me know. ------------------ From: Jihed Chaibi [ Upstream commit 91049ec2e18376ec2192e73ef7be4c7110436350 ] The conditional block that defines clock constraints for the stm32h7-sai variant references "st,stm32mph7-sai", which does not match any compatible string in the enum. As a result, clock validation for the h7 variant is silently skipped. Correct the compatible string to "st,stm32h7-sai". Fixes: 8509bb1f11a1f ("ASoC: dt-bindings: add stm32mp25 support for sai") Signed-off-by: Jihed Chaibi Reviewed-by: Olivier Moysan Link: https://patch.msgid.link/20260321012011.125791-1-jihed.chaibi.dev@gmail.com Signed-off-by: Mark Brown Signed-off-by: Sasha Levin --- Documentation/devicetree/bindings/sound/st,stm32-sai.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/devicetree/bindings/sound/st,stm32-sai.yaml b/Documentation/devicetree/bindings/sound/st,stm32-sai.yaml index 4a7129d0b1574..551edf39e7663 100644 --- a/Documentation/devicetree/bindings/sound/st,stm32-sai.yaml +++ b/Documentation/devicetree/bindings/sound/st,stm32-sai.yaml @@ -164,7 +164,7 @@ allOf: properties: compatible: contains: - const: st,stm32mph7-sai + const: st,stm32h7-sai then: properties: clocks: -- 2.53.0