]> git.itanic.dy.fi Git - linux-stable/commitdiff
hexagon: traps: remove sys_syscall()
authorNathan Chancellor <nathan@kernel.org>
Thu, 30 Nov 2023 22:58:31 +0000 (15:58 -0700)
committerAndrew Morton <akpm@linux-foundation.org>
Mon, 11 Dec 2023 01:21:37 +0000 (17:21 -0800)
Clang warns:

  arch/hexagon/kernel/traps.c:335:6: warning: no previous prototype for function 'sys_syscall' [-Wmissing-prototypes]
    335 | long sys_syscall(void)
        |      ^
  arch/hexagon/kernel/traps.c:335:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
    335 | long sys_syscall(void)
        | ^
        | static

This function is not used anywhere, so remove it.

Link: https://lkml.kernel.org/r/20231130-hexagon-missing-prototypes-v1-18-5c34714afe9e@kernel.org
Signed-off-by: Nathan Chancellor <nathan@kernel.org>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Brian Cain <bcain@quicinc.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
arch/hexagon/kernel/traps.c

index 6447763ce5a941ba94a7dd03494a9c5e2980f75e..3f6ff43cb514d411d1a16c11ddda446adbd3bc38 100644 (file)
@@ -331,13 +331,6 @@ void do_genex(struct pt_regs *regs)
        }
 }
 
-/* Indirect system call dispatch */
-long sys_syscall(void)
-{
-       printk(KERN_ERR "sys_syscall invoked!\n");
-       return -ENOSYS;
-}
-
 void do_trap0(struct pt_regs *regs)
 {
        syscall_fn syscall;