The SPI IP in this platform is fully compatible with the current driver implementation, requiring only a new compatible string.
Signed-off-by: Dario Binacchi <[email protected]> --- (no changes since v1) drivers/spi/stm32_spi.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/spi/stm32_spi.c b/drivers/spi/stm32_spi.c index 39ea69c68174..903cc3702807 100644 --- a/drivers/spi/stm32_spi.c +++ b/drivers/spi/stm32_spi.c @@ -686,6 +686,7 @@ static const struct dm_spi_ops stm32_spi_ops = { }; static const struct udevice_id stm32_spi_ids[] = { + { .compatible = "st,stm32mp25-spi", }, { .compatible = "st,stm32h7-spi", }, { } }; -- 2.43.0

