diff options
author | Lee Leahy <leroy.p.leahy@intel.com> | 2017-03-15 17:52:06 -0700 |
---|---|---|
committer | Lee Leahy <leroy.p.leahy@intel.com> | 2017-03-16 04:13:50 +0100 |
commit | 73a28942031675fce20d6649d2c2ce66fe62f416 (patch) | |
tree | d225fe29f105a2c745edb1c56f348f2c937eaeb2 /src/cpu/intel/model_2065x | |
parent | 4239ff37b7711bd81bc5ab96bb135b3c977aa2b5 (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/model_2065x')
-rw-r--r-- | src/cpu/intel/model_2065x/bootblock.c | 4 | ||||
-rw-r--r-- | src/cpu/intel/model_2065x/finalize.c | 2 | ||||
-rw-r--r-- | src/cpu/intel/model_2065x/model_2065x_init.c | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/src/cpu/intel/model_2065x/bootblock.c b/src/cpu/intel/model_2065x/bootblock.c index 675e6bd9cc..a57f166d48 100644 --- a/src/cpu/intel/model_2065x/bootblock.c +++ b/src/cpu/intel/model_2065x/bootblock.c @@ -30,8 +30,8 @@ #error "CPU must be paired with Intel Ibex Peak southbridge" #endif -static void set_var_mtrr( - unsigned reg, unsigned base, unsigned size, unsigned type) +static void set_var_mtrr(unsigned int reg, unsigned int base, unsigned int size, + unsigned int type) { /* Bit Bit 32-35 of MTRRphysMask should be set to 1 */ diff --git a/src/cpu/intel/model_2065x/finalize.c b/src/cpu/intel/model_2065x/finalize.c index 6a729b224c..50e00bf74a 100644 --- a/src/cpu/intel/model_2065x/finalize.c +++ b/src/cpu/intel/model_2065x/finalize.c @@ -26,7 +26,7 @@ * Document Number 504790 * Revision 1.6.0, June 2012 */ -static void msr_set_bit(unsigned reg, unsigned bit) +static void msr_set_bit(unsigned int reg, unsigned int bit) { msr_t msr = rdmsr(reg); diff --git a/src/cpu/intel/model_2065x/model_2065x_init.c b/src/cpu/intel/model_2065x/model_2065x_init.c index 68e86a6663..fe095c409d 100644 --- a/src/cpu/intel/model_2065x/model_2065x_init.c +++ b/src/cpu/intel/model_2065x/model_2065x_init.c @@ -115,7 +115,7 @@ int cpu_get_apic_id_map(int *apic_id_map) { int i; struct cpuid_result result; - unsigned threads_per_package, threads_per_core; + unsigned int threads_per_package, threads_per_core; /* Logical processors (threads) per core */ result = cpuid_ext(0xb, 0); @@ -258,7 +258,7 @@ static void configure_mca(void) static void intel_cores_init(struct device *cpu) { struct cpuid_result result; - unsigned threads_per_package, threads_per_core, i; + unsigned int threads_per_package, threads_per_core, i; /* Logical processors (threads) per core */ result = cpuid_ext(0xb, 0); |