diff options
author | Michael Ellerman <mpe@ellerman.id.au> | 2015-04-04 04:28:50 -0400 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2015-04-10 06:02:49 -0400 |
commit | a7f4ee1fe93aa9ae191971be9324edb8f9fbcb4a (patch) | |
tree | d462b76619518d4d35a1cadb026297c77c2f7816 /arch/powerpc/sysdev | |
parent | 7261b956b276aa97fbf60d00f1d7717d2ea6ee78 (diff) |
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 in e147ec8f1808
"[POWERPC] Simplify smp_space_timers". We still passed the value around
until June 2010 when even that was finally removed in c1aa687d499a
"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>
Diffstat (limited to 'arch/powerpc/sysdev')
-rw-r--r-- | arch/powerpc/sysdev/mpic.c | 4 | ||||
-rw-r--r-- | arch/powerpc/sysdev/xics/xics-common.c | 4 |
2 files changed, 2 insertions, 6 deletions
diff --git a/arch/powerpc/sysdev/mpic.c b/arch/powerpc/sysdev/mpic.c index fb19084c5860..b2b8447a227a 100644 --- a/arch/powerpc/sysdev/mpic.c +++ b/arch/powerpc/sysdev/mpic.c | |||
@@ -1897,7 +1897,7 @@ void smp_mpic_message_pass(int cpu, int msg) | |||
1897 | msg * MPIC_INFO(CPU_IPI_DISPATCH_STRIDE), physmask); | 1897 | msg * MPIC_INFO(CPU_IPI_DISPATCH_STRIDE), physmask); |
1898 | } | 1898 | } |
1899 | 1899 | ||
1900 | int __init smp_mpic_probe(void) | 1900 | void __init smp_mpic_probe(void) |
1901 | { | 1901 | { |
1902 | int nr_cpus; | 1902 | int nr_cpus; |
1903 | 1903 | ||
@@ -1909,8 +1909,6 @@ int __init smp_mpic_probe(void) | |||
1909 | 1909 | ||
1910 | if (nr_cpus > 1) | 1910 | if (nr_cpus > 1) |
1911 | mpic_request_ipis(); | 1911 | mpic_request_ipis(); |
1912 | |||
1913 | return nr_cpus; | ||
1914 | } | 1912 | } |
1915 | 1913 | ||
1916 | void smp_mpic_setup_cpu(int cpu) | 1914 | void smp_mpic_setup_cpu(int cpu) |
diff --git a/arch/powerpc/sysdev/xics/xics-common.c b/arch/powerpc/sysdev/xics/xics-common.c index 125743b58c70..878a54036a25 100644 --- a/arch/powerpc/sysdev/xics/xics-common.c +++ b/arch/powerpc/sysdev/xics/xics-common.c | |||
@@ -140,15 +140,13 @@ static void xics_request_ipi(void) | |||
140 | IRQF_PERCPU | IRQF_NO_THREAD, "IPI", NULL)); | 140 | IRQF_PERCPU | IRQF_NO_THREAD, "IPI", NULL)); |
141 | } | 141 | } |
142 | 142 | ||
143 | int __init xics_smp_probe(void) | 143 | void __init xics_smp_probe(void) |
144 | { | 144 | { |
145 | /* Setup cause_ipi callback based on which ICP is used */ | 145 | /* Setup cause_ipi callback based on which ICP is used */ |
146 | smp_ops->cause_ipi = icp_ops->cause_ipi; | 146 | smp_ops->cause_ipi = icp_ops->cause_ipi; |
147 | 147 | ||
148 | /* Register all the IPIs */ | 148 | /* Register all the IPIs */ |
149 | xics_request_ipi(); | 149 | xics_request_ipi(); |
150 | |||
151 | return num_possible_cpus(); | ||
152 | } | 150 | } |
153 | 151 | ||
154 | #endif /* CONFIG_SMP */ | 152 | #endif /* CONFIG_SMP */ |