tools/litex_json2dts: Fix liteuart node
serial@f0001000: 'device_type' does not match any of the regexes: 'pinctrl-[0-9]+' From schema: Documentation/devicetree/bindings/serial/litex,liteuart.yaml Fix this by dropping the offending property. Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
This commit is contained in:
parent
bcef9a68ca
commit
54d2578f04
|
@ -183,7 +183,6 @@ def generate_dts(d, initrd_start=None, initrd_size=None, polling=False):
|
||||||
aliases["serial0"] = "liteuart0"
|
aliases["serial0"] = "liteuart0"
|
||||||
dts += """
|
dts += """
|
||||||
liteuart0: serial@{uart_csr_base:x} {{
|
liteuart0: serial@{uart_csr_base:x} {{
|
||||||
device_type = "serial";
|
|
||||||
compatible = "litex,liteuart";
|
compatible = "litex,liteuart";
|
||||||
reg = <0x{uart_csr_base:x} 0x100>;
|
reg = <0x{uart_csr_base:x} 0x100>;
|
||||||
{uart_interrupt}
|
{uart_interrupt}
|
||||||
|
|
Loading…
Reference in New Issue