diff options
author | Rob Herring (Arm) <robh@kernel.org> | 2024-05-21 00:27:05 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2024-05-21 13:35:12 +0200 |
commit | 737ce4fb96206f999ddea7530145fc0e8abd5d31 (patch) | |
tree | 4f8e1b5529b71d92b5fcf1600d501d107ee623d1 /Documentation/devicetree | |
parent | ASoC: tas2781: Fix wrong loading calibrated data sequence (diff) | |
download | linux-737ce4fb96206f999ddea7530145fc0e8abd5d31.tar.xz linux-737ce4fb96206f999ddea7530145fc0e8abd5d31.zip |
ASoC: dt-bindings: stm32: Ensure compatible pattern matches whole string
The compatible pattern "st,stm32-sai-sub-[ab]" is missing starting and
ending anchors, so any prefix and/or suffix would still be valid.
This also fixes a warning on the example:
Documentation/devicetree/bindings/sound/st,stm32-sai.example.dtb: /example-0/sai@4400b000/audio-controller@4400b004: failed to match any schema with compatible: ['st,stm32-sai-sub-a']
Signed-off-by: Rob Herring (Arm) <robh@kernel.org>
Link: https://msgid.link/r/20240520222705.1742367-1-robh@kernel.org
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'Documentation/devicetree')
-rw-r--r-- | Documentation/devicetree/bindings/sound/st,stm32-sai.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/devicetree/bindings/sound/st,stm32-sai.yaml b/Documentation/devicetree/bindings/sound/st,stm32-sai.yaml index 59df8a832310..f555ccd6b00a 100644 --- a/Documentation/devicetree/bindings/sound/st,stm32-sai.yaml +++ b/Documentation/devicetree/bindings/sound/st,stm32-sai.yaml @@ -68,7 +68,7 @@ patternProperties: properties: compatible: description: Compatible for SAI sub-block A or B. - pattern: "st,stm32-sai-sub-[ab]" + pattern: "^st,stm32-sai-sub-[ab]$" "#sound-dai-cells": const: 0 |