[PATCH] test: event: Correct usage of IS_ENABLED() macro in test/common/event.c

Tom Rini trini at konsulko.com
Wed Feb 26 21:31:09 CET 2025


This file was using IS_ENABLED() to test for CONFIG flags but omitted
the CONFIG_ prefix and so did not work as expected.

Signed-off-by: Tom Rini <trini at konsulko.com>
---
 test/common/event.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/common/event.c b/test/common/event.c
index bfbbf019768e..e77e020b00bc 100644
--- a/test/common/event.c
+++ b/test/common/event.c
@@ -91,7 +91,7 @@ static int test_event_probe(struct unit_test_state *uts)
 	struct test_state state;
 	struct udevice *dev;
 
-	if (!IS_ENABLED(SANDBOX))
+	if (!IS_ENABLED(CONFIG_SANDBOX))
 		return -EAGAIN;
 
 	state.val = 0;
-- 
2.43.0



More information about the U-Boot mailing list