From: Simon Glass <sjg@chromium.org>
Date: Sat, 22 Jan 2022 12:07:23 +0000 (-0700)
Subject: mips: Avoid using config_enabled() directly
X-Git-Tag: v2025.01-rc5-pxa1908~1544^2~23
X-Git-Url: http://git.dujemihanovic.xyz/img/html/static/%7B%7B?a=commitdiff_plain;h=d67f9e35c4573fd6389d41a7dfdfaf1e6a155005;p=u-boot.git

mips: Avoid using config_enabled() directly

Use IS_ENABLED() instead, which is the correct macro for checking a CONFIG
option.

Signed-off-by: Simon Glass <sjg@chromium.org>
---

diff --git a/arch/mips/lib/cache.c b/arch/mips/lib/cache.c
index 51a8f43347..ec652f0fba 100644
--- a/arch/mips/lib/cache.c
+++ b/arch/mips/lib/cache.c
@@ -38,7 +38,7 @@ static void probe_l2(void)
 			l2c = read_c0_config5() & MIPS_CONF5_L2C;
 	}
 
-	if (l2c && config_enabled(CONFIG_MIPS_CM)) {
+	if (l2c && IS_ENABLED(CONFIG_MIPS_CM)) {
 		gd->arch.l2_line_size = mips_cm_l2_line_size();
 	} else if (l2c) {
 		/* We don't know how to retrieve L2 config on this system */