diff options
author | Maxime Ripard <maxime@cerno.tech> | 2019-12-09 12:34:38 +0300 |
---|---|---|
committer | Rob Herring <robh@kernel.org> | 2019-12-18 04:39:38 +0300 |
commit | b19da6636c4ae90e3da360b7dd8797365e58b97b (patch) | |
tree | 8a278e44997f5230def26bb54ed9474447dfdcb9 | |
parent | 0b2f7ad1f2f65fd9d0488f98eb680e7cbc640e3f (diff) | |
download | linux-b19da6636c4ae90e3da360b7dd8797365e58b97b.tar.xz |
dt-bindings: sram: Allow for the childs nodes to be called sections
The generic SRAM binding currently only allows for child nodes of an SRAM
to be called sram too. However, these are also called sections in a number
of device tree, which seems a bit more accurate.
Let's change the name pattern to allow both.
Signed-off-by: Maxime Ripard <maxime@cerno.tech>
Signed-off-by: Rob Herring <robh@kernel.org>
-rw-r--r-- | Documentation/devicetree/bindings/sram/sram.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/devicetree/bindings/sram/sram.yaml b/Documentation/devicetree/bindings/sram/sram.yaml index ee2287a1b14d..83e3bc64d6fc 100644 --- a/Documentation/devicetree/bindings/sram/sram.yaml +++ b/Documentation/devicetree/bindings/sram/sram.yaml @@ -55,7 +55,7 @@ properties: type: boolean patternProperties: - "^([a-z]*-)?sram@[a-f0-9]+$": + "^([a-z]*-)?sram(-section)?@[a-f0-9]+$": type: object description: Each child of the sram node specifies a region of reserved memory. |