powerpc/perf: Change the data type for the variable 'ncpu' in IMC code
Change the data type for the variable 'ncpu' in ppc_core_imc_cpu_offline(), since cpumask_any_but() returns an 'int' value. Signed-off-by: Anju T Sudhakar <anju@linux.vnet.ibm.com> Reported-by: David Binderman <dcb314@hotmail.com> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
This commit is contained in:
parent
684d984038
commit
074db39e00
1 changed files with 2 additions and 1 deletions
|
@ -611,7 +611,8 @@ static int ppc_core_imc_cpu_online(unsigned int cpu)
|
|||
|
||||
static int ppc_core_imc_cpu_offline(unsigned int cpu)
|
||||
{
|
||||
unsigned int ncpu, core_id;
|
||||
unsigned int core_id;
|
||||
int ncpu;
|
||||
struct imc_pmu_ref *ref;
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Reference in a new issue