On 02.06.2023 14:05, Andrew Cooper wrote: > On 01/06/2023 6:43 pm, Alejandro Vallejo wrote: >> @@ -151,6 +152,11 @@ not_multiboot: >> .Lnot_aligned: >> add $sym_offs(.Lbag_alg_msg),%esi # Error message >> jmp .Lget_vtb >> +#if IS_ENABLED(CONFIG_REQUIRE_NX_BIT) > > This doesn't need to be IS_ENABLED(). #if will DTRT for a non-existent > symbol by considering such to be 0.
And then it really should be #ifdef, not #if (like for all "real" Kconfig symbols). Jan