diff options
author | David Heidelberg <[email protected]> | 2021-12-24 20:25:45 +0100 |
---|---|---|
committer | Ulf Hansson <[email protected]> | 2021-12-28 17:53:06 +0100 |
commit | 33a48bd897de79a6ca5aa3f3350a323ed83b8a38 (patch) | |
tree | d6418f6e0da0089e6ad2c7587983d300d43f5f46 | |
parent | 5733c41d5c18c3e49b9e9d467591d42d014335ca (diff) |
dt-bindings: mmc: PL18x stop relying on order of dma-names
We don't care in which order are "rx" and "tx" DMA names supplied.
Fixes: 4df297aaeb9c ("dt-bindings: mmc: Add missing properties used in examples")
Signed-off-by: David Heidelberg <[email protected]>
Reviewed-by: Linus Walleij <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Ulf Hansson <[email protected]>
-rw-r--r-- | Documentation/devicetree/bindings/mmc/arm,pl18x.yaml | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/Documentation/devicetree/bindings/mmc/arm,pl18x.yaml b/Documentation/devicetree/bindings/mmc/arm,pl18x.yaml index f0a44b2cfa79..a4f74bec68a3 100644 --- a/Documentation/devicetree/bindings/mmc/arm,pl18x.yaml +++ b/Documentation/devicetree/bindings/mmc/arm,pl18x.yaml @@ -70,9 +70,13 @@ properties: maxItems: 2 dma-names: - items: - - const: rx - - const: tx + oneOf: + - items: + - const: tx + - const: rx + - items: + - const: rx + - const: tx power-domains: true |