]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
arm: mach-k3: j721s2_init: Enable memory with CONFIG_K3_J721E_DDRSS
authorDominik Haller <d.haller@phytec.de>
Fri, 11 Aug 2023 10:04:44 +0000 (12:04 +0200)
committerTom Rini <trini@konsulko.com>
Thu, 12 Oct 2023 18:06:05 +0000 (14:06 -0400)
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

index 712a7e253fa88b2304113332deada9c7737191da..a5be84b147c0451d73c5f0df7d04ba87de45e192 100644 (file)
@@ -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);