aboutsummaryrefslogtreecommitdiffstats
path: root/arch/riscv
diff options
context:
space:
mode:
authorSouptick Joarder <jrdr.linux@gmail.com>2020-12-09 00:57:18 +0530
committerPalmer Dabbelt <palmerdabbelt@google.com>2020-12-10 17:47:23 -0800
commit3ae9c3cde51abcb777125cfcf74cc402f4d0a4c7 (patch)
treefc151853675ad0b3444d186c79ed3f4515242c28 /arch/riscv
parentriscv: kernel: Drop unused clean rule (diff)
downloadlinux-dev-3ae9c3cde51abcb777125cfcf74cc402f4d0a4c7.tar.xz
linux-dev-3ae9c3cde51abcb777125cfcf74cc402f4d0a4c7.zip
riscv: Fixed kernel test robot warning
Kernel test robot throws below warning - arch/riscv/kernel/asm-offsets.c:14:6: warning: no previous prototype for 'asm_offsets' [-Wmissing-prototypes] 14 | void asm_offsets(void) | ^~~~~~~~~~~ This patch should fixed it. Reported-by: kernel test robot <lkp@intel.com> Signed-off-by: Souptick Joarder <jrdr.linux@gmail.com> Signed-off-by: Palmer Dabbelt <palmerdabbelt@google.com>
Diffstat (limited to 'arch/riscv')
-rw-r--r--arch/riscv/kernel/asm-offsets.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/riscv/kernel/asm-offsets.c b/arch/riscv/kernel/asm-offsets.c
index db203442c08f..b79ffa3561fd 100644
--- a/arch/riscv/kernel/asm-offsets.c
+++ b/arch/riscv/kernel/asm-offsets.c
@@ -11,6 +11,8 @@
#include <asm/thread_info.h>
#include <asm/ptrace.h>
+void asm_offsets(void);
+
void asm_offsets(void)
{
OFFSET(TASK_THREAD_RA, task_struct, thread.ra);