Re: [PATCH] x86: Correct usage of IS_ENABLED() macro in arch/x86/lib/spl.c

2025-05-09 Thread Tom Rini
On Wed, 26 Feb 2025 14:31:26 -0600, Tom Rini wrote: > This file was using IS_ENABLED() to test for CONFIG flags but omitted > the CONFIG_ prefix and so did not work as expected. > > Applied to u-boot/master, thanks! [1/1] x86: Correct usage of IS_ENABLED() macro in arch/x86/lib/spl.c com

[PATCH] x86: Correct usage of IS_ENABLED() macro in arch/x86/lib/spl.c

2025-02-26 Thread Tom Rini
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 --- Cc: Simon Glass Cc: Bin Meng --- arch/x86/lib/spl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/lib/spl.c b/arc