Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

dt-bindings: bus: uniphier-system-bus: fix warning in example

Since commit e69f5dc623f9 ("dt-bindings: serial: Convert 8250 to
json-schema"), the schema for "ns16550a" is checked.

'make dt_binding_check' emits the following warning:

uart@5,00200000: $nodename:0: 'uart@5,00200000' does not match '^serial(@[0-9a-f,]+)*$'

Rename the node to follow the pattern defined in
Documentation/devicetree/bindings/serial/serial.yaml

While I was here, I removed leading zeros from unit names.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Link: https://lore.kernel.org/r/20200623113242.779241-1-yamada.masahiro@socionext.com
Signed-off-by: Rob Herring <robh@kernel.org>

authored by

Masahiro Yamada and committed by
Rob Herring
0fb24d1e 3eb619b2

+2 -2
+2 -2
Documentation/devicetree/bindings/bus/socionext,uniphier-system-bus.yaml
··· 80 80 ranges = <1 0x00000000 0x42000000 0x02000000>, 81 81 <5 0x00000000 0x46000000 0x01000000>; 82 82 83 - ethernet@1,01f00000 { 83 + ethernet@1,1f00000 { 84 84 compatible = "smsc,lan9115"; 85 85 reg = <1 0x01f00000 0x1000>; 86 86 interrupts = <0 48 4>; 87 87 phy-mode = "mii"; 88 88 }; 89 89 90 - uart@5,00200000 { 90 + serial@5,200000 { 91 91 compatible = "ns16550a"; 92 92 reg = <5 0x00200000 0x20>; 93 93 interrupts = <0 49 4>;