Commit 17028776 authored by Alexey Kardashevskiy's avatar Alexey Kardashevskiy Committed by Michael Ellerman

powerpc/powernv: Fix compile without CONFIG_TRACEPOINTS

The functions returns s64 but the return statement is missing.
This adds the missing return statement.

Fixes: 75d9fc7f ("powerpc/powernv: move OPAL call wrapper tracing and interrupt handling to C")
Signed-off-by: default avatarAlexey Kardashevskiy <aik@ozlabs.ru>
Signed-off-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
parent 19d69075
...@@ -86,6 +86,7 @@ static s64 __opal_call_trace(s64 a0, s64 a1, s64 a2, s64 a3, ...@@ -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, s64 a4, s64 a5, s64 a6, s64 a7,
unsigned long opcode, unsigned long msr) unsigned long opcode, unsigned long msr)
{ {
return 0;
} }
#define DO_TRACE false #define DO_TRACE false
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment