Skip to content

Commit 72cc199

Browse files
committed
arm64: dts: juno: fix few unit address format warnings
This patch fixes the following set of warnings on juno. smb@08000000 unit name should not have leading 0s sysctl@020000 simple-bus unit address format error, expected "20000" apbregs@010000 simple-bus unit address format error, expected "10000" mmci@050000 simple-bus unit address format error, expected "50000" kmi@060000 simple-bus unit address format error, expected "60000" kmi@070000 simple-bus unit address format error, expected "70000" wdt@0f0000 simple-bus unit address format error, expected "f0000" Acked-by: Liviu Dudau <[email protected]> Signed-off-by: Sudeep Holla <[email protected]>
1 parent dc10ef2 commit 72cc199

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

arch/arm64/boot/dts/arm/juno-base.dtsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -699,7 +699,7 @@
699699
<0x00000008 0x80000000 0x1 0x80000000>;
700700
};
701701

702-
smb@08000000 {
702+
smb@8000000 {
703703
compatible = "simple-bus";
704704
#address-cells = <2>;
705705
#size-cells = <1>;

arch/arm64/boot/dts/arm/juno-motherboard.dtsi

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@
137137
#size-cells = <1>;
138138
ranges = <0 3 0 0x200000>;
139139

140-
v2m_sysctl: sysctl@020000 {
140+
v2m_sysctl: sysctl@20000 {
141141
compatible = "arm,sp810", "arm,primecell";
142142
reg = <0x020000 0x1000>;
143143
clocks = <&v2m_refclk32khz>, <&v2m_refclk1mhz>, <&mb_clk24mhz>;
@@ -148,7 +148,7 @@
148148
assigned-clock-parents = <&v2m_refclk1mhz>, <&v2m_refclk1mhz>, <&v2m_refclk1mhz>, <&v2m_refclk1mhz>;
149149
};
150150

151-
apbregs@010000 {
151+
apbregs@10000 {
152152
compatible = "syscon", "simple-mfd";
153153
reg = <0x010000 0x1000>;
154154

@@ -216,7 +216,7 @@
216216
};
217217
};
218218

219-
mmci@050000 {
219+
mmci@50000 {
220220
compatible = "arm,pl180", "arm,primecell";
221221
reg = <0x050000 0x1000>;
222222
interrupts = <5>;
@@ -228,23 +228,23 @@
228228
clock-names = "mclk", "apb_pclk";
229229
};
230230

231-
kmi@060000 {
231+
kmi@60000 {
232232
compatible = "arm,pl050", "arm,primecell";
233233
reg = <0x060000 0x1000>;
234234
interrupts = <8>;
235235
clocks = <&mb_clk24mhz>, <&soc_smc50mhz>;
236236
clock-names = "KMIREFCLK", "apb_pclk";
237237
};
238238

239-
kmi@070000 {
239+
kmi@70000 {
240240
compatible = "arm,pl050", "arm,primecell";
241241
reg = <0x070000 0x1000>;
242242
interrupts = <8>;
243243
clocks = <&mb_clk24mhz>, <&soc_smc50mhz>;
244244
clock-names = "KMIREFCLK", "apb_pclk";
245245
};
246246

247-
wdt@0f0000 {
247+
wdt@f0000 {
248248
compatible = "arm,sp805", "arm,primecell";
249249
reg = <0x0f0000 0x10000>;
250250
interrupts = <7>;

0 commit comments

Comments
 (0)