arch/x86: Use boolean for flag_is_changeable_p()

Change-Id: I7a2edd86ed509a5de7e3529fdc2ea68fe9c268e0
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/89401
Reviewed-by: Shuo Liu <shuo.liu@intel.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Elyes Haouas 2025-10-02 15:15:05 +02:00
commit c2fcf69e41
2 changed files with 2 additions and 2 deletions

View file

@ -15,7 +15,7 @@
#if ENV_X86_32
/* Standard macro to see if a specific flag is changeable */
static inline int flag_is_changeable_p(uint32_t flag)
static inline bool flag_is_changeable_p(uint32_t flag)
{
uint32_t f1, f2;

View file

@ -6,7 +6,7 @@
#if ENV_X86_32
/* Standard macro to see if a specific flag is changeable */
static inline int flag_is_changeable_p(uint32_t flag)
static inline bool flag_is_changeable_p(uint32_t flag)
{
uint32_t f1, f2;