diff options
author | Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> | 2024-03-25 11:48:33 +0100 |
---|---|---|
committer | Rob Herring <robh@kernel.org> | 2024-04-03 15:20:33 +0200 |
commit | 500b42091c1dd878b7a8a59ef89aba85e0054b7b (patch) | |
tree | 86df61823d6c591691e1c71db3938db958ce8340 | |
parent | dt-bindings: soc: fsl: narrow regex for unit address to hex numbers (diff) | |
download | linux-500b42091c1dd878b7a8a59ef89aba85e0054b7b.tar.xz linux-500b42091c1dd878b7a8a59ef89aba85e0054b7b.zip |
dt-bindings: timer: narrow regex for unit address to hex numbers
Regular expression used to match the unit address part should not allow
non-hex numbers. Expect at least one hex digit as well.
Acked-by: Rob Herring <robh@kernel.org>
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Link: https://lore.kernel.org/r/20240325104833.33372-2-krzysztof.kozlowski@linaro.org
Signed-off-by: Rob Herring <robh@kernel.org>
-rw-r--r-- | Documentation/devicetree/bindings/timer/arm,arch_timer_mmio.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/devicetree/bindings/timer/arm,arch_timer_mmio.yaml b/Documentation/devicetree/bindings/timer/arm,arch_timer_mmio.yaml index 7a4a6ab85970..ab8f28993139 100644 --- a/Documentation/devicetree/bindings/timer/arm,arch_timer_mmio.yaml +++ b/Documentation/devicetree/bindings/timer/arm,arch_timer_mmio.yaml @@ -60,7 +60,7 @@ properties: be implemented in an always-on power domain." patternProperties: - '^frame@[0-9a-z]*$': + '^frame@[0-9a-f]+$': type: object additionalProperties: false description: A timer node has up to 8 frame sub-nodes, each with the following properties. |