diff options
author | Angel Pons <th3fanbus@gmail.com> | 2021-11-03 16:19:37 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2021-11-05 12:38:55 +0000 |
commit | dc4f46e77632670764a43294df27a6448429e8ef (patch) | |
tree | 75c832188947c28e6e923f3803b3d55c617b7f16 /src | |
parent | abe5632b67406509fa69cb3a67b5fae6d7e47c05 (diff) |
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>
Diffstat (limited to 'src')
-rw-r--r-- | src/soc/intel/baytrail/include/soc/pattrs.h | 2 |
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 cd22e123c9..d0d3bf0f4c 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; }; |