summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAngel Pons <th3fanbus@gmail.com>2021-11-03 16:19:37 +0100
committerPatrick Georgi <pgeorgi@google.com>2021-11-05 12:38:55 +0000
commitdc4f46e77632670764a43294df27a6448429e8ef (patch)
tree75c832188947c28e6e923f3803b3d55c617b7f16
parentabe5632b67406509fa69cb3a67b5fae6d7e47c05 (diff)
downloadcoreboot-dc4f46e77632670764a43294df27a6448429e8ef.tar.gz
coreboot-dc4f46e77632670764a43294df27a6448429e8ef.tar.bz2
coreboot-dc4f46e77632670764a43294df27a6448429e8ef.zip
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>
-rw-r--r--src/soc/intel/baytrail/include/soc/pattrs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/baytrail/include/soc/pattrs.h b/src/soc/intel/baytrail/include/soc/pattrs.h
index cd22e123c91e..d0d3bf0f4ca9 100644
--- a/src/soc/intel/baytrail/include/soc/pattrs.h
+++ b/src/soc/intel/baytrail/include/soc/pattrs.h
@@ -29,7 +29,7 @@ struct pattrs {
int stepping;
const void *microcode_patch;
int address_bits;
- int num_cpus;
+ unsigned int num_cpus;
unsigned int bclk_khz;
};