dts: treewide: fix missing use of underscores

in  #83352 a few bindings were not migrated,
fix that, as it will lead to ci fails.

Signed-off-by: Fin Maaß <f.maass@vogl-electronic.com>
This commit is contained in:
Fin Maaß 2025-06-18 11:13:17 +02:00 committed by Anas Nashif
commit 4a468e93cd
12 changed files with 16 additions and 16 deletions

View file

@ -138,7 +138,7 @@ zephyr_uhc1: &usbhhs {
pinctrl-0 = <&pinmux_usbhhs>; pinctrl-0 = <&pinmux_usbhhs>;
pinctrl-names = "default"; pinctrl-names = "default";
status = "okay"; status = "okay";
phy_handle = <&usbphy1>; phy-handle = <&usbphy1>;
}; };
&usbphy1 { &usbphy1 {

View file

@ -165,7 +165,7 @@ zephyr_uhc1: &usbhhs {
pinctrl-0 = <&pinmux_usbhhs>; pinctrl-0 = <&pinmux_usbhhs>;
pinctrl-names = "default"; pinctrl-names = "default";
status = "okay"; status = "okay";
phy_handle = <&usbphy1>; phy-handle = <&usbphy1>;
}; };
&usbphy1 { &usbphy1 {

View file

@ -213,12 +213,12 @@ zephyr_udc0: &usb1 {
zephyr_uhc0: &usbh1 { zephyr_uhc0: &usbh1 {
status = "okay"; status = "okay";
phy_handle = <&usbphy1>; phy-handle = <&usbphy1>;
}; };
zephyr_uhc1: &usbh2 { zephyr_uhc1: &usbh2 {
status = "okay"; status = "okay";
phy_handle = <&usbphy2>; phy-handle = <&usbphy2>;
}; };
&usbphy1 { &usbphy1 {

View file

@ -190,12 +190,12 @@ zephyr_udc0: &usb1 {
zephyr_uhc0: &usbh1 { zephyr_uhc0: &usbh1 {
status = "okay"; status = "okay";
phy_handle = <&usbphy1>; phy-handle = <&usbphy1>;
}; };
zephyr_uhc1: &usbh2 { zephyr_uhc1: &usbh2 {
status = "okay"; status = "okay";
phy_handle = <&usbphy2>; phy-handle = <&usbphy2>;
}; };
&usbphy1 { &usbphy1 {

View file

@ -326,7 +326,7 @@
interrupt-names = "pwm"; interrupt-names = "pwm";
clocks = <&clock0 SIWX91X_CLK_PWM>; clocks = <&clock0 SIWX91X_CLK_PWM>;
#pwm-cells = <2>; #pwm-cells = <2>;
silabs,ch_prescaler = <64 64 64 64>; silabs,ch-prescaler = <64 64 64 64>;
status = "disabled"; status = "disabled";
}; };

View file

@ -8,7 +8,7 @@ compatible: "solomon,ssd1309fb"
include: ["solomon,ssd1306fb-common.yaml", "spi-device.yaml"] include: ["solomon,ssd1306fb-common.yaml", "spi-device.yaml"]
properties: properties:
data_cmd-gpios: data-cmd-gpios:
type: phandle-array type: phandle-array
required: true required: true
description: D/C# pin. description: D/C# pin.

View file

@ -12,7 +12,7 @@ properties:
type: boolean type: boolean
description: | description: |
If enabled the maximum current output is set to 35 mA (25.5 mA else). If enabled the maximum current output is set to 35 mA (25.5 mA else).
log_scale_en: log-scale-en:
type: boolean type: boolean
description: | description: |
If enabled a logarithmic dimming scale curve is used for LED brightness If enabled a logarithmic dimming scale curve is used for LED brightness

View file

@ -12,7 +12,7 @@ properties:
"#pwm-cells": "#pwm-cells":
const: 2 const: 2
silabs,ch_prescaler: silabs,ch-prescaler:
type: array type: array
required: true required: true
description: | description: |
@ -26,7 +26,7 @@ properties:
- 32 - 32
- 64 - 64
silabs,pwm_polarity: silabs,pwm-polarity:
type: int type: int
required: true required: true
description: | description: |

View file

@ -8,5 +8,5 @@ compatible: "nxp,uhc-ehci"
include: [usb-controller.yaml] include: [usb-controller.yaml]
properties: properties:
phy_handle: phy-handle:
type: phandle type: phandle

View file

@ -8,5 +8,5 @@ compatible: "nxp,uhc-ip3516hs"
include: [usb-controller.yaml, pinctrl-device.yaml] include: [usb-controller.yaml, pinctrl-device.yaml]
properties: properties:
phy_handle: phy-handle:
type: phandle type: phandle

View file

@ -19,13 +19,13 @@ properties:
description: Watchdog clock divider description: Watchdog clock divider
required: true required: true
input_trigger_en: input-trigger-en:
type: boolean type: boolean
description: | description: |
When enabled the ewm_in signal can be used When enabled the ewm_in signal can be used
to assert the ewm. to assert the ewm.
input_trigger_active_high: input-trigger-active-high:
type: boolean type: boolean
description: | description: |
When enabled the ewm_in signal is active high. When enabled the ewm_in signal is active high.

View file

@ -26,6 +26,6 @@
pwm_channel1: pwm_channel1 { pwm_channel1: pwm_channel1 {
pwms = <&pwm 0 1000000>; pwms = <&pwm 0 1000000>;
}; };
silabs,pwm_polarity = <PWM_POLARITY_NORMAL>; silabs,pwm-polarity = <PWM_POLARITY_NORMAL>;
status = "okay"; status = "okay";
}; };