diff options
| author | Rob Herring <[email protected]> | 2023-01-19 20:04:53 -0600 |
|---|---|---|
| committer | Miquel Raynal <[email protected]> | 2023-01-30 17:03:46 +0100 |
| commit | c705e63a323a1a6c8d5830c2c3992586ef5fba26 (patch) | |
| tree | 8748fd87a25c450b241177b07c0f3d55ee1f6ed5 | |
| parent | a30144c02c84614ed160ab70e38fcf7b024a1bb0 (diff) | |
dt-bindings: mtd: partitions: Fix partition node name pattern
The 'partition' node name pattern is missing start and end anchors, so
anything is allowed before or after the regex pattern. There's no in tree
users needing that, so add anchors to the pattern.
Signed-off-by: Rob Herring <[email protected]>
Reviewed-by: Pratyush Yadav <[email protected]>
Reviewed-by: Dhruva Gole <[email protected]>
Signed-off-by: Miquel Raynal <[email protected]>
Link: https://lore.kernel.org/linux-mtd/[email protected]
| -rw-r--r-- | Documentation/devicetree/bindings/mtd/partitions/partitions.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/devicetree/bindings/mtd/partitions/partitions.yaml b/Documentation/devicetree/bindings/mtd/partitions/partitions.yaml index 9aca4e6c6047..2edc65e0e361 100644 --- a/Documentation/devicetree/bindings/mtd/partitions/partitions.yaml +++ b/Documentation/devicetree/bindings/mtd/partitions/partitions.yaml @@ -32,7 +32,7 @@ properties: enum: [1, 2] patternProperties: - "partition(-.+|@[0-9a-f]+)": + "^partition(-.+|@[0-9a-f]+)$": $ref: partition.yaml required: |