commit | a570b0624b3f73a6cc57c529e506300c639912e2 | [log] [tgz] |
---|---|---|
author | Ard Biesheuvel <ardb@kernel.org> | Sun Feb 02 11:22:41 2020 +0100 |
committer | Ard Biesheuvel <ardb@kernel.org> | Sun Feb 23 21:59:42 2020 +0100 |
tree | 7f241911d71277c796a3016d31bbc0f6c271bb68 | |
parent | 14b60cc8e0ead866cd25b4e51945c6267ca9936c [diff] |
efi/x86: Replace #ifdefs with IS_ENABLED() checks When possible, IS_ENABLED() conditionals are preferred over #ifdefs, given that the latter hide the code from the compiler entirely, which reduces build test coverage when the option is not enabled. So replace an instance in the x86 efi startup code. Signed-off-by: Ard Biesheuvel <ardb@kernel.org>