Patrick Georgi has submitted this change. ( https://review.coreboot.org/c/coreboot/+/58916 )
Change subject: soc/intel/baytrail: Make `num_cpus` unsigned ......................................................................
soc/intel/baytrail: Make `num_cpus` unsigned
Change-Id: I9ab0106c27a834d5d2ac1cb8023f4400a8ad91cd Signed-off-by: Angel Pons th3fanbus@gmail.com Reviewed-on: https://review.coreboot.org/c/coreboot/+/58916 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Felix Held felix-coreboot@felixheld.de --- M src/soc/intel/baytrail/include/soc/pattrs.h 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: build bot (Jenkins): Verified Felix Held: Looks good to me, approved
diff --git a/src/soc/intel/baytrail/include/soc/pattrs.h b/src/soc/intel/baytrail/include/soc/pattrs.h index cd22e12..d0d3bf0 100644 --- a/src/soc/intel/baytrail/include/soc/pattrs.h +++ b/src/soc/intel/baytrail/include/soc/pattrs.h @@ -29,7 +29,7 @@ int stepping; const void *microcode_patch; int address_bits; - int num_cpus; + unsigned int num_cpus; unsigned int bclk_khz; };