Elyes Haouas has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/86326?usp=email )
Change subject: cpu/intel/haswell: Use boolean for haswell_is_ult ......................................................................
cpu/intel/haswell: Use boolean for haswell_is_ult
Change-Id: I319fd385231c0195793781722c563477816b93cd Signed-off-by: Elyes Haouas ehaouas@noos.fr --- M src/cpu/intel/haswell/haswell.h 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/26/86326/1
diff --git a/src/cpu/intel/haswell/haswell.h b/src/cpu/intel/haswell/haswell.h index 5697d0f..a991299 100644 --- a/src/cpu/intel/haswell/haswell.h +++ b/src/cpu/intel/haswell/haswell.h @@ -181,7 +181,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); }