mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-04-18 03:23:53 -04:00
powerpc: Drop return value of smp_ops->probe()
smp_ops->probe() is currently supposed to return the number of cpus in the system. The last actual usage of the value was removed in May 2007 ine147ec8f18"[POWERPC] Simplify smp_space_timers". We still passed the value around until June 2010 when even that was finally removed inc1aa687d49"powerpc: Clean up obsolete code relating to decrementer and timebase". So drop that requirement, probe() now returns void, and update all implementations. Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
This commit is contained in:
@@ -1897,7 +1897,7 @@ void smp_mpic_message_pass(int cpu, int msg)
|
||||
msg * MPIC_INFO(CPU_IPI_DISPATCH_STRIDE), physmask);
|
||||
}
|
||||
|
||||
int __init smp_mpic_probe(void)
|
||||
void __init smp_mpic_probe(void)
|
||||
{
|
||||
int nr_cpus;
|
||||
|
||||
@@ -1909,8 +1909,6 @@ int __init smp_mpic_probe(void)
|
||||
|
||||
if (nr_cpus > 1)
|
||||
mpic_request_ipis();
|
||||
|
||||
return nr_cpus;
|
||||
}
|
||||
|
||||
void smp_mpic_setup_cpu(int cpu)
|
||||
|
||||
Reference in New Issue
Block a user