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

Commit b5b1cfc5 authored by Michael Ellerman's avatar Michael Ellerman
Browse files

powerpc/fadump: Fix build error introduced by recent cleanup



We spent so much time bike-shedding the printk() we missed that the next
line was missing a semi-colon. And it seems none of our defconfigs turn
on CONFIG_FA_DUMP.

Fixes: 4a03749f ("powerpc/fadump: Trivial fix of spelling mistake, clean up message")
Signed-off-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
parent 43a1dd9b
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -1010,7 +1010,7 @@ static int fadump_invalidate_dump(struct fadump_mem_struct *fdm)


	if (rc) {
	if (rc) {
		pr_err("Failed to invalidate firmware-assisted dump registration. Unexpected error (%d).\n", rc);
		pr_err("Failed to invalidate firmware-assisted dump registration. Unexpected error (%d).\n", rc);
		return rc
		return rc;
	}
	}
	fw_dump.dump_active = 0;
	fw_dump.dump_active = 0;
	fdm_active = NULL;
	fdm_active = NULL;