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 2DD6F8820 for ; Fri, 10 Mar 2023 14:53:47 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 88C33C433D2; Fri, 10 Mar 2023 14:53:46 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1678460027; bh=8siIEt0VorqHEtQymNRZqf7kJIrMUoQVe7sWxH4dNwY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=c4dWHsJ1voa7u/teq/vSNbL5gqp1Nsc3E4YDrz2v18kHbnyYmeOK5YKLlVP1jcfRx 73oDfJ1bNGaAYOrEZ+HdtzcTysrheoxHXM5txzZvFFl+vMQpy/bYJBNPTegRP3nTsZ cJB9HrmNzPIYChMkgqdOMsLsvWe1i8iG7ccWfw2o= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Jerome Brunet , Krzysztof Kozlowski , Mark Brown , Sasha Levin Subject: [PATCH 5.10 199/529] ASoC: dt-bindings: meson: fix gx-card codec node regex Date: Fri, 10 Mar 2023 14:35:42 +0100 Message-Id: <20230310133814.221988400@linuxfoundation.org> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20230310133804.978589368@linuxfoundation.org> References: <20230310133804.978589368@linuxfoundation.org> User-Agent: quilt/0.67 Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Jerome Brunet [ Upstream commit 480b26226873c88e482575ceb0d0a38d76e1be57 ] 'codec' is a valid node name when there is a single codec in the link. Fix the node regular expression to apply this. Fixes: fd00366b8e41 ("ASoC: meson: gx: add sound card dt-binding documentation") Signed-off-by: Jerome Brunet Reviewed-by: Krzysztof Kozlowski Link: https://lore.kernel.org/r/20230202183653.486216-3-jbrunet@baylibre.com Signed-off-by: Mark Brown Signed-off-by: Sasha Levin --- .../devicetree/bindings/sound/amlogic,gx-sound-card.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/devicetree/bindings/sound/amlogic,gx-sound-card.yaml b/Documentation/devicetree/bindings/sound/amlogic,gx-sound-card.yaml index 2e35aeaa8781d..89e3819c6127a 100644 --- a/Documentation/devicetree/bindings/sound/amlogic,gx-sound-card.yaml +++ b/Documentation/devicetree/bindings/sound/amlogic,gx-sound-card.yaml @@ -61,7 +61,7 @@ patternProperties: description: phandle of the CPU DAI patternProperties: - "^codec-[0-9]+$": + "^codec(-[0-9]+)?$": type: object description: |- Codecs: -- 2.39.2