diff options
author | Anurag Dutta <a-dutta@ti.com> | 2025-09-17 15:16:56 +0530 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-09-17 07:51:32 -0600 |
commit | dd4039e380db3558319866e5f03a3949d88af9bd (patch) | |
tree | 086689372f5a7cbe748c64ae907109eb6c8633d6 | |
parent | 5b35aa9da1e0795981cf7bafd1053feb7de95be2 (diff) |
mtd: Kconfig: Add SPL_MUX_MMIO dependency to HBMC driver
MUX_MMIO is needed by HBMC in SPL stage. Enable it at SPL as well
as u-boot proper stage.
Signed-off-by: Anurag Dutta <a-dutta@ti.com>
Reviewed-by: Udit Kumar <u-kumar1@ti.com>
-rw-r--r-- | drivers/mtd/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/Kconfig b/drivers/mtd/Kconfig index 2b7f5e5ed7b..e76601a5545 100644 --- a/drivers/mtd/Kconfig +++ b/drivers/mtd/Kconfig @@ -202,7 +202,7 @@ config RENESAS_RPC_HF config HBMC_AM654 bool "HyperBus controller driver for AM65x SoC" - depends on MULTIPLEXER && MUX_MMIO + depends on MULTIPLEXER && (MUX_MMIO || SPL_MUX_MMIO) help This is the driver for HyperBus controller on TI's AM65x and other SoCs |