Skip to content

Commit

Permalink
riscv: dts: starfive: jh7100: Use generic node names
Browse files Browse the repository at this point in the history
arch/riscv/boot/dts/starfive/jh7100-starlight.dt.yaml: hs_serial@11870000: $nodename:0: 'hs_serial@11870000' does not match '^serial(@[0-9a-f,]+)*$'
arch/riscv/boot/dts/starfive/jh7100-starlight.dt.yaml: hs_serial@11880000: $nodename:0: 'hs_serial@11880000' does not match '^serial(@[0-9a-f,]+)*$'
arch/riscv/boot/dts/starfive/jh7100-starlight.dt.yaml: sgdma1p@10500000: $nodename:0: 'sgdma1p@10500000' does not match '^dma-controller(@.*)?$'
arch/riscv/boot/dts/starfive/jh7100-starlight.dt.yaml: sgdma2p@100b0000: $nodename:0: 'sgdma2p@100b0000' does not match '^dma-controller(@.*)?$'
arch/riscv/boot/dts/starfive/jh7100-starlight.dt.yaml: gmac@10020000: $nodename:0: 'gmac@10020000' does not match '^ethernet(@.*)?$'
arch/riscv/boot/dts/starfive/jh7100-starlight.dt.yaml: sdio0@10000000: $nodename:0: 'sdio0@10000000' does not match '^mmc(@.*)?$'
arch/riscv/boot/dts/starfive/jh7100-starlight.dt.yaml: sdio1@10010000: $nodename:0: 'sdio1@10010000' does not match '^mmc(@.*)?$'

Use generic node names, to comply with the generic names recommendation
in the devicetree specification.

Fixes: c653fe8 ("riscv: dts: Add JH7100 and BeagleV Starlight support")
Signed-off-by: Geert Uytterhoeven <[email protected]>
  • Loading branch information
geertu committed May 7, 2021
1 parent b0bcf8c commit d175ad9
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions arch/riscv/boot/dts/starfive/jh7100.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@
reg-names = "control";
};

plic: plic@c000000 {
plic: interrupt-controller@c000000 {
#interrupt-cells = <1>;
compatible = "riscv,plic0";
interrupt-controller;
Expand All @@ -295,7 +295,7 @@
riscv,ndev = <127>;
};

uart0: hs_serial@11870000 {
uart0: serial@11870000 {
compatible = "snps,dw-apb-uart";
interrupt-parent = <&plic>;
interrupts = <92>;
Expand All @@ -309,7 +309,7 @@
status = "disabled";
};

uart1: hs_serial@11880000 {
uart1: serial@11880000 {
compatible = "snps,dw-apb-uart";
interrupt-parent = <&plic>;
interrupts = <93>;
Expand Down Expand Up @@ -351,7 +351,7 @@
status = "disabled";
};

dma2p: sgdma2p@100b0000 {
dma2p: dma-controller@100b0000 {
compatible = "snps,axi-dma-1.01a";
reg = <0x0 0x100b0000 0x0 0x10000>;
clocks = <&axiclk>, <&ahb0clk>;
Expand All @@ -367,7 +367,7 @@
status = "okay";
};

dma1p: sgdma1p@10500000 {
dma1p: dma-controller@10500000 {
compatible = "snps,axi-dma-1.01a";
reg = <0x0 0x10500000 0x0 0x10000>;
clocks = <&axiclk>, <&ahb0clk>;
Expand Down Expand Up @@ -487,7 +487,7 @@
snps,blen = <256 128 64 32 0 0 0>;
};

gmac: gmac@10020000 {
gmac: ethernet@10020000 {
compatible = "snps,dwmac";
reg = <0x0 0x10020000 0x0 0x10000>;
interrupt-parent = <&plic>;
Expand Down Expand Up @@ -634,7 +634,7 @@
};
};

sdio0: sdio0@10000000 {
sdio0: mmc@10000000 {
compatible = "snps,dw-mshc";
reg = <0x0 0x10000000 0x0 0x10000>;
interrupts = <4>;
Expand All @@ -654,7 +654,7 @@
post-power-on-delay-ms = <200>;
};

sdio1: sdio1@10010000 {
sdio1: mmc@10010000 {
compatible = "snps,dw-mshc";
reg = <0x0 0x10010000 0x0 0x10000>;
interrupts = <5>;
Expand Down

0 comments on commit d175ad9

Please sign in to comment.