aboutsummaryrefslogtreecommitdiff
path: root/src/cpu/intel/hyperthreading/intel_sibling.c
diff options
context:
space:
mode:
authorLee Leahy <leroy.p.leahy@intel.com>2017-03-15 17:52:06 -0700
committerLee Leahy <leroy.p.leahy@intel.com>2017-03-16 04:13:50 +0100
commit73a28942031675fce20d6649d2c2ce66fe62f416 (patch)
treed225fe29f105a2c745edb1c56f348f2c937eaeb2 /src/cpu/intel/hyperthreading/intel_sibling.c
parent4239ff37b7711bd81bc5ab96bb135b3c977aa2b5 (diff)
cpu/intel: Add int to unsigned
Fix the following warning detected by checkpatch.pl: WARNING: Prefer 'unsigned int' to bare use of 'unsigned' TEST=Build and run on Galileo Gen2 Change-Id: I207713a3370e5a9abed4535187aa2aaeef502d6f Signed-off-by: Lee Leahy <Leroy.P.Leahy@intel.com> Reviewed-on: https://review.coreboot.org/18848 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/cpu/intel/hyperthreading/intel_sibling.c')
-rw-r--r--src/cpu/intel/hyperthreading/intel_sibling.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/intel/hyperthreading/intel_sibling.c b/src/cpu/intel/hyperthreading/intel_sibling.c
index 9d2160f754..640d9b37f5 100644
--- a/src/cpu/intel/hyperthreading/intel_sibling.c
+++ b/src/cpu/intel/hyperthreading/intel_sibling.c
@@ -53,7 +53,7 @@ int intel_ht_sibling(void)
void intel_sibling_init(struct device *cpu)
{
- unsigned i, siblings;
+ unsigned int i, siblings;
struct cpuid_result result;
/* On the bootstrap processor see if I want sibling cpus enabled */