diff mbox series

[v5,02/13] mips: Avoid using config_enabled() directly

Message ID 20220122050728.v5.2.I27d11850b1f0208d8c61cb3257a346da036cc3ce@changeid
State Accepted
Commit d67f9e35c4573fd6389d41a7dfdfaf1e6a155005
Delegated to: Tom Rini
Headers show
Series kconfig: Add some new macros | expand

Commit Message

Simon Glass Jan. 22, 2022, 12:07 p.m. UTC
Use IS_ENABLED() instead, which is the correct macro for checking a CONFIG
option.

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

(no changes since v1)

 arch/mips/lib/cache.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Tom Rini Feb. 9, 2022, 4:37 p.m. UTC | #1
On Sat, Jan 22, 2022 at 05:07:23AM -0700, Simon Glass wrote:

> Use IS_ENABLED() instead, which is the correct macro for checking a CONFIG
> option.
> 
> Signed-off-by: Simon Glass <sjg@chromium.org>

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

Patch

diff --git a/arch/mips/lib/cache.c b/arch/mips/lib/cache.c
index 51a8f433475..ec652f0fba8 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 */