From: Alexey Kardashevskiy Date: Tue, 12 Mar 2019 05:07:12 +0000 (+1100) Subject: powerpc/powernv: Fix compile without CONFIG_TRACEPOINTS X-Git-Tag: v5.1-rc1~11^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1702877621ff1c8a737857b71d379510267a17db;p=thirdparty%2Fkernel%2Fstable.git powerpc/powernv: Fix compile without CONFIG_TRACEPOINTS The functions returns s64 but the return statement is missing. This adds the missing return statement. Fixes: 75d9fc7fd94e ("powerpc/powernv: move OPAL call wrapper tracing and interrupt handling to C") Signed-off-by: Alexey Kardashevskiy Signed-off-by: Michael Ellerman --- diff --git a/arch/powerpc/platforms/powernv/opal-call.c b/arch/powerpc/platforms/powernv/opal-call.c index 578757d403ab8..daad8c45c8e72 100644 --- a/arch/powerpc/platforms/powernv/opal-call.c +++ b/arch/powerpc/platforms/powernv/opal-call.c @@ -86,6 +86,7 @@ static s64 __opal_call_trace(s64 a0, s64 a1, s64 a2, s64 a3, s64 a4, s64 a5, s64 a6, s64 a7, unsigned long opcode, unsigned long msr) { + return 0; } #define DO_TRACE false