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-names = "default";
status = "okay";
phy_handle = <&usbphy1>;
phy-handle = <&usbphy1>;
};
&usbphy1 {

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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