]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/commitdiff
riscv: remove unused variable in ftrace
authorDavid Abdurachmanov <david.abdurachmanov@gmail.com>
Thu, 6 Dec 2018 10:26:26 +0000 (11:26 +0100)
committerPalmer Dabbelt <palmer@sifive.com>
Fri, 21 Dec 2018 16:11:26 +0000 (08:11 -0800)
Noticed while building kernel-4.20.0-0.rc5.git2.1.fc30 for
Fedora 30/RISCV.

[..]
BUILDSTDERR: arch/riscv/kernel/ftrace.c: In function 'prepare_ftrace_return':
BUILDSTDERR: arch/riscv/kernel/ftrace.c:135:6: warning: unused variable 'err' [-Wunused-variable]
BUILDSTDERR:   int err;
BUILDSTDERR:       ^~~
[..]

Signed-off-by: David Abdurachmanov <david.abdurachmanov@gmail.com>
Fixes: e949b6db51dc1 ("riscv/function_graph: Simplify with function_graph_enter()")
Reviewed-by: Olof Johansson <olof@lixom.net>
Acked-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
Signed-off-by: Palmer Dabbelt <palmer@sifive.com>
arch/riscv/kernel/ftrace.c

index c433f6d3dd64f0b4eec0a567854d1cfca59c650f..a840b7d074f7d3028bb04f7d10e849db68c08c06 100644 (file)
@@ -132,7 +132,6 @@ void prepare_ftrace_return(unsigned long *parent, unsigned long self_addr,
 {
        unsigned long return_hooker = (unsigned long)&return_to_handler;
        unsigned long old;
-       int err;
 
        if (unlikely(atomic_read(&current->tracing_graph_pause)))
                return;