Skip to content

Commit b986158

Browse files
committed
Merge tag 'devicetree-for-6.5-2' of git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux
Pull more devicetree updates from Rob Herring: - Whitespace clean-ups in binding examples - Restrict node name suffixes to "-[0-9]+" for cases of multiple instances which don't have unit-addresses - Convert brcm,kona-wdt and cdns,wdt-r1p2 watchdog bindings to DT schema * tag 'devicetree-for-6.5-2' of git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux: dt-bindings: soc: qcom: stats: Update maintainer email dt-bindings: cleanup DTS example whitespaces dt-bindings: timestamp: restrict node name suffixes dt-bindings: slimbus: restrict node name suffixes dt-bindings: watchdog: restrict node name suffixes dt-bindings: watchdog: brcm,kona-wdt: convert txt file to yaml dt-bindings: watchdog: cdns,wdt-r1p2: Convert cadence watchdog to yaml
2 parents fe1de55 + 31e9f40 commit b986158

23 files changed

+138
-73
lines changed

Documentation/devicetree/bindings/arm/arm,coresight-cti.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ examples:
287287
arm,trig-in-sigs = <0 1>;
288288
arm,trig-in-types = <PE_DBGTRIGGER
289289
PE_PMUIRQ>;
290-
arm,trig-out-sigs=<0 1 2 >;
290+
arm,trig-out-sigs = <0 1 2 >;
291291
arm,trig-out-types = <PE_EDBGREQ
292292
PE_DBGRESTART
293293
PE_CTIIRQ>;
@@ -309,24 +309,24 @@ examples:
309309
310310
trig-conns@0 {
311311
reg = <0>;
312-
arm,trig-in-sigs=<0>;
313-
arm,trig-in-types=<GEN_INTREQ>;
314-
arm,trig-out-sigs=<0>;
315-
arm,trig-out-types=<GEN_HALTREQ>;
312+
arm,trig-in-sigs = <0>;
313+
arm,trig-in-types = <GEN_INTREQ>;
314+
arm,trig-out-sigs = <0>;
315+
arm,trig-out-types = <GEN_HALTREQ>;
316316
arm,trig-conn-name = "sys_profiler";
317317
};
318318
319319
trig-conns@1 {
320320
reg = <1>;
321-
arm,trig-out-sigs=<2 3>;
322-
arm,trig-out-types=<GEN_HALTREQ GEN_RESTARTREQ>;
321+
arm,trig-out-sigs = <2 3>;
322+
arm,trig-out-types = <GEN_HALTREQ GEN_RESTARTREQ>;
323323
arm,trig-conn-name = "watchdog";
324324
};
325325
326326
trig-conns@2 {
327327
reg = <2>;
328-
arm,trig-in-sigs=<1 6>;
329-
arm,trig-in-types=<GEN_HALTREQ GEN_RESTARTREQ>;
328+
arm,trig-in-sigs = <1 6>;
329+
arm,trig-in-types = <GEN_HALTREQ GEN_RESTARTREQ>;
330330
arm,trig-conn-name = "g_counter";
331331
};
332332
};

Documentation/devicetree/bindings/arm/keystone/ti,sci.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,8 @@ examples:
9696
compatible = "ti,k2g-sci";
9797
ti,system-reboot-controller;
9898
mbox-names = "rx", "tx";
99-
mboxes= <&msgmgr 5 2>,
100-
<&msgmgr 0 0>;
99+
mboxes = <&msgmgr 5 2>,
100+
<&msgmgr 0 0>;
101101
reg-names = "debug_messages";
102102
reg = <0x02921800 0x800>;
103103
};
@@ -107,8 +107,8 @@ examples:
107107
compatible = "ti,k2g-sci";
108108
ti,host-id = <12>;
109109
mbox-names = "rx", "tx";
110-
mboxes= <&secure_proxy_main 11>,
111-
<&secure_proxy_main 13>;
110+
mboxes = <&secure_proxy_main 11>,
111+
<&secure_proxy_main 13>;
112112
reg-names = "debug_messages";
113113
reg = <0x44083000 0x1000>;
114114

Documentation/devicetree/bindings/display/msm/gmu.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ examples:
243243
#include <dt-bindings/interrupt-controller/arm-gic.h>
244244
245245
gmu: gmu@506a000 {
246-
compatible="qcom,adreno-gmu-630.2", "qcom,adreno-gmu";
246+
compatible = "qcom,adreno-gmu-630.2", "qcom,adreno-gmu";
247247
248248
reg = <0x506a000 0x30000>,
249249
<0xb280000 0x10000>,

Documentation/devicetree/bindings/display/panel/samsung,s6e8aa0.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ examples:
7474
vdd3-supply = <&vcclcd_reg>;
7575
vci-supply = <&vlcd_reg>;
7676
reset-gpios = <&gpy4 5 0>;
77-
power-on-delay= <50>;
77+
power-on-delay = <50>;
7878
reset-delay = <100>;
7979
init-delay = <100>;
8080
panel-width-mm = <58>;

Documentation/devicetree/bindings/display/rockchip/rockchip-vop.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,11 +121,11 @@ examples:
121121
#size-cells = <0>;
122122
vopb_out_edp: endpoint@0 {
123123
reg = <0>;
124-
remote-endpoint=<&edp_in_vopb>;
124+
remote-endpoint = <&edp_in_vopb>;
125125
};
126126
vopb_out_hdmi: endpoint@1 {
127127
reg = <1>;
128-
remote-endpoint=<&hdmi_in_vopb>;
128+
remote-endpoint = <&hdmi_in_vopb>;
129129
};
130130
};
131131
};

Documentation/devicetree/bindings/iio/adc/ti,adc108s102.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ unevaluatedProperties: false
3535
examples:
3636
- |
3737
spi {
38-
#address-cells= <1>;
38+
#address-cells = <1>;
3939
#size-cells = <0>;
4040
4141
adc@0 {

Documentation/devicetree/bindings/media/renesas,rzg2l-cru.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ examples:
137137
138138
cru_parallel_in: endpoint@0 {
139139
reg = <0>;
140-
remote-endpoint= <&ov5642>;
140+
remote-endpoint = <&ov5642>;
141141
hsync-active = <1>;
142142
vsync-active = <1>;
143143
};
@@ -150,7 +150,7 @@ examples:
150150
151151
cru_csi_in: endpoint@0 {
152152
reg = <0>;
153-
remote-endpoint= <&csi_cru_in>;
153+
remote-endpoint = <&csi_cru_in>;
154154
};
155155
};
156156
};

Documentation/devicetree/bindings/media/renesas,vin.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -303,11 +303,11 @@ examples:
303303
304304
vin0csi20: endpoint@0 {
305305
reg = <0>;
306-
remote-endpoint= <&csi20vin0>;
306+
remote-endpoint = <&csi20vin0>;
307307
};
308308
vin0csi40: endpoint@2 {
309309
reg = <2>;
310-
remote-endpoint= <&csi40vin0>;
310+
remote-endpoint = <&csi40vin0>;
311311
};
312312
};
313313
};

Documentation/devicetree/bindings/mtd/mtd-physmap.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ examples:
164164
reg = <0 0xf80000>;
165165
};
166166
firmware@f80000 {
167-
label ="firmware";
167+
label = "firmware";
168168
reg = <0xf80000 0x80000>;
169169
read-only;
170170
};

Documentation/devicetree/bindings/net/mediatek-dwmac.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ examples:
156156
reg = <0x1101c000 0x1300>;
157157
interrupts = <GIC_SPI 237 IRQ_TYPE_LEVEL_LOW>;
158158
interrupt-names = "macirq";
159-
phy-mode ="rgmii-rxid";
159+
phy-mode = "rgmii-rxid";
160160
mac-address = [00 55 7b b5 7d f7];
161161
clock-names = "axi",
162162
"apb",

0 commit comments

Comments
 (0)