diff options
| author | Patrice Chotard <[email protected]> | 2025-10-17 14:18:42 +0200 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-11-17 10:43:20 -0600 |
| commit | 87b0ab0365dc2bf884752bf86654367e11835fda (patch) | |
| tree | 0327764961c7f56423cac366927dbe22f5afa9dd /arch | |
| parent | 3192a7eb0e6e9080ec26d7aa222857981b4132e5 (diff) | |
stm32mp: Add stm32mp23 support for syscon driver
Add "st,stm32mp23-syscfg" compatible.
Fixes: fdd30ee308a2 ("ARM: stm32mp: Add STM32MP23 support")
Signed-off-by: Patrice Chotard <[email protected]>
Reviewed-by: Patrick Delaunay <[email protected]>
Diffstat (limited to 'arch')
| -rw-r--r-- | arch/arm/mach-stm32mp/syscon.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-stm32mp/syscon.c b/arch/arm/mach-stm32mp/syscon.c index 8bcbd979340..b00897e87ec 100644 --- a/arch/arm/mach-stm32mp/syscon.c +++ b/arch/arm/mach-stm32mp/syscon.c @@ -10,6 +10,7 @@ static const struct udevice_id stm32mp_syscon_ids[] = { { .compatible = "st,stm32mp157-syscfg", .data = STM32MP_SYSCON_SYSCFG }, + { .compatible = "st,stm32mp23-syscfg", .data = STM32MP_SYSCON_SYSCFG}, { .compatible = "st,stm32mp25-syscfg", .data = STM32MP_SYSCON_SYSCFG}, { } }; |
