diff options
author | Zhen Lei <thunder.leizhen@huawei.com> | 2021-05-20 14:54:39 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2021-05-27 16:18:52 +0300 |
commit | f2b0fe4b121e25bacdcfebd8a9dfd307b87142e7 (patch) | |
tree | 6b5155d043ee4906bea85a6b108eb3ca4ad7d6c5 /Documentation/devicetree/bindings/serial | |
parent | 18c092e5c35ece7fa1fe0b2c6f8c4a13da3fc641 (diff) | |
download | linux-f2b0fe4b121e25bacdcfebd8a9dfd307b87142e7.tar.xz |
dt-bindings: serial: pl011: Delete an incorrect compatible string
The compatible strings "zte,zx296702-uart" and "arm,primecell" are a
combination, but commit 89d4f98ae90d ("ARM: remove zte zx platform")
removes only the former. It is incorrect to match driver pl011 based only
on the remaining "arm,primecell". Delete it.
Signed-off-by: Zhen Lei <thunder.leizhen@huawei.com>
Reviewed-by: Rob Herring <robh@kernel.org>
Documentation/devicetree/bindings/serial/pl011.yaml | 9 +++------
1 file changed, 3 insertions(+), 6 deletions(-)
Link: https://lore.kernel.org/r/20210520115440.8259-2-thunder.leizhen@huawei.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'Documentation/devicetree/bindings/serial')
-rw-r--r-- | Documentation/devicetree/bindings/serial/pl011.yaml | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/Documentation/devicetree/bindings/serial/pl011.yaml b/Documentation/devicetree/bindings/serial/pl011.yaml index 142187337c76..5ea00f8a283d 100644 --- a/Documentation/devicetree/bindings/serial/pl011.yaml +++ b/Documentation/devicetree/bindings/serial/pl011.yaml @@ -24,12 +24,9 @@ select: properties: compatible: - oneOf: - - items: - - const: arm,pl011 - - const: arm,primecell - - items: - - const: arm,primecell + items: + - const: arm,pl011 + - const: arm,primecell reg: maxItems: 1 |