Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ed62e330 authored by Soren Brinkmann's avatar Soren Brinkmann Committed by Michal Simek
Browse files

ARM: zynq: Rename 'zynq_platform_cpu_die'



Match the naming pattern of all other SMP ops and rename
zynq_platform_cpu_die --> zynq_cpu_die.

Signed-off-by: default avatarSoren Brinkmann <soren.brinkmann@xilinx.com>
Signed-off-by: default avatarMichal Simek <michal.simek@xilinx.com>
parent caf86a73
Loading
Loading
Loading
Loading
+7 −5
Original line number Diff line number Diff line
@@ -137,12 +137,14 @@ static int zynq_cpu_kill(unsigned cpu)
	return 1;
}

/*
 * platform-specific code to shutdown a CPU
/**
 * zynq_cpu_die - Let a CPU core die
 * @cpu:	Dying CPU
 *
 * Called with IRQs disabled
 * Platform-specific code to shutdown a CPU.
 * Called with IRQs disabled on the dying CPU.
 */
static void zynq_platform_cpu_die(unsigned int cpu)
static void zynq_cpu_die(unsigned int cpu)
{
	zynq_slcr_cpu_state_write(cpu, true);

@@ -162,7 +164,7 @@ struct smp_operations zynq_smp_ops __initdata = {
	.smp_boot_secondary	= zynq_boot_secondary,
	.smp_secondary_init	= zynq_secondary_init,
#ifdef CONFIG_HOTPLUG_CPU
	.cpu_die		= zynq_platform_cpu_die,
	.cpu_die		= zynq_cpu_die,
	.cpu_kill		= zynq_cpu_kill,
#endif
};