aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc
diff options
context:
space:
mode:
authorMichael Ellerman <mpe@ellerman.id.au>2016-07-05 23:45:56 +1000
committerMichael Ellerman <mpe@ellerman.id.au>2016-07-05 23:49:46 +1000
commitb5b1cfc5d4d8457e98bbab0b8402c07b3938c3e6 (patch)
tree8546577d3b40151b558fb0cba7fb90df29449363 /arch/powerpc
parentpowerpc/powernv: Add driver for operator panel on FSP machines (diff)
downloadlinux-dev-b5b1cfc5d4d8457e98bbab0b8402c07b3938c3e6.tar.xz
linux-dev-b5b1cfc5d4d8457e98bbab0b8402c07b3938c3e6.zip
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: 4a03749f140c ("powerpc/fadump: Trivial fix of spelling mistake, clean up message") Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'arch/powerpc')
-rw-r--r--arch/powerpc/kernel/fadump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/kernel/fadump.c b/arch/powerpc/kernel/fadump.c
index f0664860753e..b3a663333d36 100644
--- a/arch/powerpc/kernel/fadump.c
+++ b/arch/powerpc/kernel/fadump.c
@@ -1010,7 +1010,7 @@ static int fadump_invalidate_dump(struct fadump_mem_struct *fdm)
if (rc) {
pr_err("Failed to invalidate firmware-assisted dump registration. Unexpected error (%d).\n", rc);
- return rc
+ return rc;
}
fw_dump.dump_active = 0;
fdm_active = NULL;