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 ccd72aed70dc include/linux/stop_machine.h
--- a/include/linux/stop_machine.h	Fri Jul 25 12:02:55 2008 +1000
+++ b/include/linux/stop_machine.h	Fri Jul 25 12:03:46 2008 +1000
@@ -53,18 +53,4 @@ static inline int stop_machine_notype(in
 	return ret;
 }
 #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);
-	}
-}
 #endif /* _LINUX_STOP_MACHINE */
