ARM: tango: fix CONFIG_HOTPLUG_CPU=n build
[linux-2.6-microblaze.git] / arch / arm / mach-tango / platsmp.c
index 8380699..98c62a4 100644 (file)
@@ -38,15 +38,14 @@ static void tango_cpu_die(unsigned int cpu)
 
        panic("cpu %d failed to die\n", cpu);
 }
-#else
-#define tango_cpu_kill NULL
-#define tango_cpu_die  NULL
 #endif
 
 static const struct smp_operations tango_smp_ops __initconst = {
        .smp_boot_secondary     = tango_boot_secondary,
+#ifdef CONFIG_HOTPLUG_CPU
        .cpu_kill               = tango_cpu_kill,
        .cpu_die                = tango_cpu_die,
+#endif
 };
 
 CPU_METHOD_OF_DECLARE(tango4_smp, "sigma,tango4-smp", &tango_smp_ops);