diff mbox series

arm: mach-k3: j721s2_init: Enable memory with CONFIG_K3_J721E_DDRSS

Message ID 20230811100444.32834-1-d.haller@phytec.de
State Accepted
Commit 2c6e28831b3f42b841bbb3b984213da20f638440
Delegated to: Tom Rini
Headers show
Series arm: mach-k3: j721s2_init: Enable memory with CONFIG_K3_J721E_DDRSS | expand

Commit Message

Dominik Haller Aug. 11, 2023, 10:04 a.m. UTC
Make that condition more generic by checking if the memory controller
driver is enabled instead of using the EVM's config.

Signed-off-by: Dominik Haller <d.haller@phytec.de>
---
 arch/arm/mach-k3/j721s2_init.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Tom Rini Oct. 12, 2023, 9:03 p.m. UTC | #1
On Fri, Aug 11, 2023 at 12:04:44PM +0200, Dominik Haller wrote:

> Make that condition more generic by checking if the memory controller
> driver is enabled instead of using the EVM's config.
> 
> Signed-off-by: Dominik Haller <d.haller@phytec.de>

Applied to u-boot/master, thanks!
diff mbox series

Patch

diff --git a/arch/arm/mach-k3/j721s2_init.c b/arch/arm/mach-k3/j721s2_init.c
index 712a7e253fa8..a5be84b147c0 100644
--- a/arch/arm/mach-k3/j721s2_init.c
+++ b/arch/arm/mach-k3/j721s2_init.c
@@ -219,7 +219,7 @@  void k3_mem_init(void)
 	struct udevice *dev;
 	int ret;
 
-	if (IS_ENABLED(CONFIG_TARGET_J721S2_R5_EVM)) {
+	if (IS_ENABLED(CONFIG_K3_J721E_DDRSS)) {
 		ret = uclass_get_device_by_name(UCLASS_MISC, "msmc", &dev);
 		if (ret)
 			panic("Probe of msmc failed: %d\n", ret);