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

Commit 619b2677 authored by Anton Blanchard's avatar Anton Blanchard Committed by Benjamin Herrenschmidt
Browse files

powerpc/kexec: Remove ppc_md.machine_kexec_cleanup



No one uses ppc_md.machine_kexec_cleanup, so remove it.

Signed-off-by: default avatarAnton Blanchard <anton@samba.org>
Signed-off-by: default avatarBenjamin Herrenschmidt <benh@kernel.crashing.org>
parent 50266a1f
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -247,9 +247,6 @@ struct machdep_calls {
	 */
	int (*machine_kexec_prepare)(struct kimage *image);

	/* Called to handle any machine specific cleanup on image */
	void (*machine_kexec_cleanup)(struct kimage *image);

	/* Called to perform the _real_ kexec.
	 * Do NOT allocate memory or fail here. We are past the point of
	 * no return.
+0 −2
Original line number Diff line number Diff line
@@ -65,8 +65,6 @@ int machine_kexec_prepare(struct kimage *image)

void machine_kexec_cleanup(struct kimage *image)
{
	if (ppc_md.machine_kexec_cleanup)
		ppc_md.machine_kexec_cleanup(image);
}

void arch_crash_save_vmcoreinfo(void)