diff options
| author | Alexey Kardashevskiy <aik@ozlabs.ru> | 2019-03-12 01:07:12 -0400 |
|---|---|---|
| committer | Michael Ellerman <mpe@ellerman.id.au> | 2019-03-12 23:59:39 -0400 |
| commit | 1702877621ff1c8a737857b71d379510267a17db (patch) | |
| tree | 17bae474cd01a02b5e2faf962efb54c2ee9a7d5d | |
| parent | 19d6907521b04206676741b26e05a1524662f9d2 (diff) | |
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 <aik@ozlabs.ru>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
| -rw-r--r-- | arch/powerpc/platforms/powernv/opal-call.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/powerpc/platforms/powernv/opal-call.c b/arch/powerpc/platforms/powernv/opal-call.c index 578757d403ab..daad8c45c8e7 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, | |||
| 86 | s64 a4, s64 a5, s64 a6, s64 a7, | 86 | s64 a4, s64 a5, s64 a6, s64 a7, |
| 87 | unsigned long opcode, unsigned long msr) | 87 | unsigned long opcode, unsigned long msr) |
| 88 | { | 88 | { |
| 89 | return 0; | ||
| 89 | } | 90 | } |
| 90 | 91 | ||
| 91 | #define DO_TRACE false | 92 | #define DO_TRACE false |
