aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Abdurachmanov <[email protected]>2018-11-08 20:07:00 +0100
committerPalmer Dabbelt <[email protected]>2018-11-20 05:19:13 -0800
commit0138ebb90c633f76bc71617f8f23635ce41c84fd (patch)
tree8c288cddd1324a68a9083aea212fb9e2263f6324
parentc0fbcd9918607e85c9598bfa3dd0a84ed77ea210 (diff)
riscv: fix warning in arch/riscv/include/asm/module.h
Fixes warning: 'struct module' declared inside parameter list will not be visible outside of this definition or declaration Signed-off-by: David Abdurachmanov <[email protected]> Acked-by: Olof Johansson <[email protected]> Signed-off-by: Palmer Dabbelt <[email protected]>
-rw-r--r--arch/riscv/include/asm/module.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/riscv/include/asm/module.h b/arch/riscv/include/asm/module.h
index 349df33808c4..cd2af4b013e3 100644
--- a/arch/riscv/include/asm/module.h
+++ b/arch/riscv/include/asm/module.h
@@ -8,6 +8,7 @@
#define MODULE_ARCH_VERMAGIC "riscv"
+struct module;
u64 module_emit_got_entry(struct module *mod, u64 val);
u64 module_emit_plt_entry(struct module *mod, u64 val);