stop_machine: Remove deprecated stop_machine_run

Everyone should be using stop_machine() now.  The staged API
transition helped life in linux-next.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
---
 include/linux/stop_machine.h |   14 --------------
 1 file changed, 14 deletions(-)

diff -r 27281a8cefcf include/linux/stop_machine.h
--- a/include/linux/stop_machine.h	Tue Jul 15 12:49:53 2008 +1000
+++ b/include/linux/stop_machine.h	Tue Jul 15 12:50:13 2008 +1000
@@ -54,20 +54,6 @@ static inline int stop_machine_notype(in
 }
 #endif /* CONFIG_SMP */
 
-static inline int __deprecated stop_machine_run(int (*fn)(void *), void *data,
-						unsigned int cpu)
-{
-	/* If they don't care which cpu fn runs on, just pick one. */
-	if (cpu == NR_CPUS)
-		return stop_machine(fn, data, NULL);
-	else if (cpu == ~0U)
-		return stop_machine(fn, data, &cpu_possible_map);
-	else {
-		cpumask_t cpus = cpumask_of_cpu(cpu);
-		return stop_machine(fn, data, &cpus);
-	}
-}
-
 /* For sysctl to access. */
 extern unsigned long stopmachine_timeout;
 
