diff --git a/boards/shields/max3421e/sparkfun_max3421e.overlay b/boards/shields/max3421e/sparkfun_max3421e.overlay index f4eb770c6af5f..74497d7f69c47 100644 --- a/boards/shields/max3421e/sparkfun_max3421e.overlay +++ b/boards/shields/max3421e/sparkfun_max3421e.overlay @@ -11,7 +11,7 @@ cs-gpios = <&arduino_header ARDUINO_HEADER_R3_D10 GPIO_ACTIVE_LOW>; zephyr_uhc0: max3421e@0 { - compatible = "maxim,max3421e_spi"; + compatible = "maxim,max3421e-spi"; spi-max-frequency = <26000000>; int-gpios = <&arduino_header ARDUINO_HEADER_R3_D9 GPIO_ACTIVE_LOW>; reset-gpios = <&arduino_header ARDUINO_HEADER_R3_D7 GPIO_ACTIVE_LOW>; diff --git a/doc/releases/migration-guide-4.4.rst b/doc/releases/migration-guide-4.4.rst index 15d45f5ea443d..5d1ccc8864368 100644 --- a/doc/releases/migration-guide-4.4.rst +++ b/doc/releases/migration-guide-4.4.rst @@ -110,6 +110,11 @@ STM32 * ``CONFIG_POWER_SUPPLY_EXTERNAL_SOURCE`` +USB +=== + + * :dtcompatible:`maxim,max3421e_spi` has been renamed to :dtcompatible:`maxim,max3421e-spi`. + .. zephyr-keep-sorted-stop Bluetooth diff --git a/drivers/usb/uhc/Kconfig.max3421e b/drivers/usb/uhc/Kconfig.max3421e index d071eb5841aed..61b461b27a6a8 100644 --- a/drivers/usb/uhc/Kconfig.max3421e +++ b/drivers/usb/uhc/Kconfig.max3421e @@ -1,7 +1,7 @@ # Copyright (c) 2022 Nordic Semiconductor ASA # SPDX-License-Identifier: Apache-2.0 -DT_COMPAT_UHC_MAX3421E := maxim,max3421e_spi +DT_COMPAT_UHC_MAX3421E := maxim,max3421e-spi config UHC_MAX3421E bool "MAX3421E driver" diff --git a/dts/bindings/usb/maxim,max3421e_spi.yaml b/dts/bindings/usb/maxim,max3421e-spi.yaml similarity index 94% rename from dts/bindings/usb/maxim,max3421e_spi.yaml rename to dts/bindings/usb/maxim,max3421e-spi.yaml index 0da6a7b79917a..59bbf992401c9 100644 --- a/dts/bindings/usb/maxim,max3421e_spi.yaml +++ b/dts/bindings/usb/maxim,max3421e-spi.yaml @@ -4,7 +4,7 @@ description: | MAX3421E USB Peripheral/Host Controller controller with SPI interface -compatible: "maxim,max3421e_spi" +compatible: "maxim,max3421e-spi" include: [spi-device.yaml] diff --git a/tests/drivers/build_all/usb/spi_devices.overlay b/tests/drivers/build_all/usb/spi_devices.overlay index 421d2894c8267..e2c516e5ea43a 100644 --- a/tests/drivers/build_all/usb/spi_devices.overlay +++ b/tests/drivers/build_all/usb/spi_devices.overlay @@ -32,7 +32,7 @@ <&test_gpio 0 0>; max3421e_spi: max3421e_spi@0 { - compatible = "maxim,max3421e_spi"; + compatible = "maxim,max3421e-spi"; reg = <0>; spi-max-frequency = <5000000>; int-gpios = <&test_gpio 0 0>;