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 660FFBA49 for ; Tue, 7 Mar 2023 18:57:12 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id BE8DEC433D2; Tue, 7 Mar 2023 18:57:11 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1678215432; bh=8siIEt0VorqHEtQymNRZqf7kJIrMUoQVe7sWxH4dNwY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=bOnKkJDildd5Kb9rWYvd1WQ++RcZU3dDBIib24Jz90kWqLRKM++J7CBGPaaHhYRmV Vl3pYJkrxoWYmmw4yzzlNAA2IPzPrdBpWwGy8+6+IY12LJ7zHWbcWDbG9TtkG36pCO BEE79C+unoeUbshivTQe5/60YQYtT0bjaWbyoJVA= 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.15 227/567] ASoC: dt-bindings: meson: fix gx-card codec node regex Date: Tue, 7 Mar 2023 17:59:23 +0100 Message-Id: <20230307165915.754756296@linuxfoundation.org> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20230307165905.838066027@linuxfoundation.org> References: <20230307165905.838066027@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