aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFabio Estevam <fabio.estevam@nxp.com>2018-02-05 13:45:37 -0500
committerShawn Guo <shawnguo@kernel.org>2018-02-12 00:11:03 -0500
commit5c1f3d95f7b7a1c0a52e148523a411d153e82c48 (patch)
tree7a9786df2fb4df790fc448ba825941b338ebf766
parentdc7eda93318474115dd722c6d3bc49b77e9c9304 (diff)
arm64: dts: ls208xa-qds: Pass unit name to dspi child nodes
Pass unit name to dspi child nodes to fix the following build warnings with W=1: arch/arm64/boot/dts/freescale/fsl-ls2080a-qds.dtb: Warning (unit_address_vs_reg): Node /soc/dspi@2100000/n25q128a has a reg or ranges property, but no unit name arch/arm64/boot/dts/freescale/fsl-ls2080a-qds.dtb: Warning (unit_address_vs_reg): Node /soc/dspi@2100000/sst25wf040b has a reg or ranges property, but no unit name arch/arm64/boot/dts/freescale/fsl-ls2080a-qds.dtb: Warning (unit_address_vs_reg): Node /soc/dspi@2100000/en25s64 has a reg or ranges property, but no unit name Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com> Signed-off-by: Shawn Guo <shawnguo@kernel.org>
-rw-r--r--arch/arm64/boot/dts/freescale/fsl-ls208xa-qds.dtsi6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm64/boot/dts/freescale/fsl-ls208xa-qds.dtsi b/arch/arm64/boot/dts/freescale/fsl-ls208xa-qds.dtsi
index b2374469a830..a1a5ccbce584 100644
--- a/arch/arm64/boot/dts/freescale/fsl-ls208xa-qds.dtsi
+++ b/arch/arm64/boot/dts/freescale/fsl-ls208xa-qds.dtsi
@@ -140,21 +140,21 @@
140 140
141&dspi { 141&dspi {
142 status = "okay"; 142 status = "okay";
143 dflash0: n25q128a { 143 dflash0: n25q128a@0 {
144 #address-cells = <1>; 144 #address-cells = <1>;
145 #size-cells = <1>; 145 #size-cells = <1>;
146 compatible = "st,m25p80"; 146 compatible = "st,m25p80";
147 spi-max-frequency = <3000000>; 147 spi-max-frequency = <3000000>;
148 reg = <0>; 148 reg = <0>;
149 }; 149 };
150 dflash1: sst25wf040b { 150 dflash1: sst25wf040b@1 {
151 #address-cells = <1>; 151 #address-cells = <1>;
152 #size-cells = <1>; 152 #size-cells = <1>;
153 compatible = "st,m25p80"; 153 compatible = "st,m25p80";
154 spi-max-frequency = <3000000>; 154 spi-max-frequency = <3000000>;
155 reg = <1>; 155 reg = <1>;
156 }; 156 };
157 dflash2: en25s64 { 157 dflash2: en25s64@2 {
158 #address-cells = <1>; 158 #address-cells = <1>;
159 #size-cells = <1>; 159 #size-cells = <1>;
160 compatible = "st,m25p80"; 160 compatible = "st,m25p80";