diff options
author | Tom Rini <trini@konsulko.com> | 2023-11-13 09:07:23 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-11-13 13:35:57 -0500 |
commit | be0724601a9dd6aebca04337b1299edd126bbb4e (patch) | |
tree | d5cd7b5f733e66f5fd2799503cccc98dfafd4c86 /arch/arm/mach-stm32mp/syscon.c | |
parent | 3b6db6901ff5babbb9d21f0fca750996e29d85e0 (diff) | |
parent | 01a701994b0590b6452516a7c67353359d053c94 (diff) |
Merge tag 'u-boot-stm32-20231113' of https://source.denx.de/u-boot/custodians/u-boot-stm into next
Introduce STM32MP2 SoCs family support
Add STM32MP257F-EV1 board
[trini: Adjust some includes]
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'arch/arm/mach-stm32mp/syscon.c')
-rw-r--r-- | arch/arm/mach-stm32mp/syscon.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-stm32mp/syscon.c b/arch/arm/mach-stm32mp/syscon.c index a0e8e1dfdc5..a2e351d74a7 100644 --- a/arch/arm/mach-stm32mp/syscon.c +++ b/arch/arm/mach-stm32mp/syscon.c @@ -10,8 +10,8 @@ #include <asm/arch/stm32.h> static const struct udevice_id stm32mp_syscon_ids[] = { - { .compatible = "st,stm32mp157-syscfg", - .data = STM32MP_SYSCON_SYSCFG }, + { .compatible = "st,stm32mp157-syscfg", .data = STM32MP_SYSCON_SYSCFG }, + { .compatible = "st,stm32mp25-syscfg", .data = STM32MP_SYSCON_SYSCFG}, { } }; |