We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3251885 commit 3696203Copy full SHA for 3696203
arch/arm/mach-omap2/common.h
@@ -272,6 +272,7 @@ extern void omap_auxcoreboot_addr(u32 cpu_addr);
272
extern u32 omap_read_auxcoreboot0(void);
273
274
extern void omap4_cpu_die(unsigned int cpu);
275
+extern int omap4_cpu_kill(unsigned int cpu);
276
277
extern const struct smp_operations omap4_smp_ops;
278
arch/arm/mach-omap2/omap-hotplug.c
@@ -64,3 +64,9 @@ void omap4_cpu_die(unsigned int cpu)
64
pr_debug("CPU%u: spurious wakeup call\n", cpu);
65
}
66
67
+
68
+/* Needed by kexec and platform_can_cpu_hotplug() */
69
+int omap4_cpu_kill(unsigned int cpu)
70
+{
71
+ return 1;
72
+}
0 commit comments