commit d1edce71135cc6d98c0a4b5729774542b676e769 Author: sophgo-forum-service <forum_service@sophgo.com> Date: Fri Mar 15 16:07:33 2024 +0800 [fix] recommend using ssh method to clone repo. [fix] fix sensor driver repo branch name.
18 lines
363 B
ArmAsm
18 lines
363 B
ArmAsm
/* SPDX-License-Identifier: GPL-2.0
|
|
*
|
|
* arch/sh/kernel/syscalls.S
|
|
*
|
|
* System call table for SuperH
|
|
*
|
|
* Copyright (C) 1999, 2000, 2002 Niibe Yutaka
|
|
* Copyright (C) 2003 Paul Mundt
|
|
*/
|
|
#include <linux/sys.h>
|
|
#include <linux/linkage.h>
|
|
|
|
#define __SYSCALL(nr, entry) .long entry
|
|
.data
|
|
ENTRY(sys_call_table)
|
|
#include <asm/syscall_table.h>
|
|
#undef __SYSCALL
|