Elyes Haouas has submitted this change. ( https://review.coreboot.org/c/coreboot/+/84857?usp=email )
Change subject: cpu/intel/haswell: Usee boolean for haswell_is_ult() ......................................................................
cpu/intel/haswell: Usee boolean for haswell_is_ult()
haswell_is_ult() returns CONFIG(INTEL_LYNXPOINT_LP) which is a boolean, so use boolean instead of int.
Change-Id: I3c98ee819fc937ed6da9ee1340c2af10cec19eb3 Signed-off-by: Elyes Haouas ehaouas@noos.fr Reviewed-on: https://review.coreboot.org/c/coreboot/+/84857 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Nicholas Chin nic.c3.14@gmail.com --- M src/cpu/intel/haswell/haswell.h 1 file changed, 2 insertions(+), 1 deletion(-)
Approvals: build bot (Jenkins): Verified Nicholas Chin: Looks good to me, approved
diff --git a/src/cpu/intel/haswell/haswell.h b/src/cpu/intel/haswell/haswell.h index 5697d0f..f63b0ef 100644 --- a/src/cpu/intel/haswell/haswell.h +++ b/src/cpu/intel/haswell/haswell.h @@ -4,6 +4,7 @@ #define _CPU_INTEL_HASWELL_H
#include <cpu/cpu.h> +#include <stdbool.h> #include <stdint.h>
/* CPU types without stepping */ @@ -181,7 +182,7 @@ return cpuid_eax(1) & 0xf; }
-static inline int haswell_is_ult(void) +static inline bool haswell_is_ult(void) { return CONFIG(INTEL_LYNXPOINT_LP); }