summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAngel Pons <th3fanbus@gmail.com>2021-11-03 16:18:40 +0100
committerPatrick Georgi <pgeorgi@google.com>2021-11-05 12:39:04 +0000
commit39bfb1e0e390e1e537912c0099c663ab52783932 (patch)
tree076a7b2119bf8957027f21bed11c0712fc0b78ab
parentdc4f46e77632670764a43294df27a6448429e8ef (diff)
downloadcoreboot-39bfb1e0e390e1e537912c0099c663ab52783932.tar.gz
coreboot-39bfb1e0e390e1e537912c0099c663ab52783932.tar.bz2
coreboot-39bfb1e0e390e1e537912c0099c663ab52783932.zip
soc/intel/braswell: Make `num_cpus` unsigned
Change-Id: Iff6da3dc9c744a3dae3f4dd4ac37a91f348450a3 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/58915 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
-rw-r--r--src/soc/intel/braswell/include/soc/pattrs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/braswell/include/soc/pattrs.h b/src/soc/intel/braswell/include/soc/pattrs.h
index 5cad6d0545f3..3383589d3e27 100644
--- a/src/soc/intel/braswell/include/soc/pattrs.h
+++ b/src/soc/intel/braswell/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;
};