mirror of
https://github.com/torvalds/linux.git
synced 2024-11-24 13:11:40 +00:00
ffd75b373f
Clean up includes of and in <asm/syscalls.h> Signed-off-by: Brian Gerst <brgerst@gmail.com> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Link: https://lkml.kernel.org/r/20200313195144.164260-19-brgerst@gmail.com
16 lines
374 B
C
16 lines
374 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* syscalls.h - Linux syscall interfaces (arch-specific)
|
|
*
|
|
* Copyright (c) 2008 Jaswinder Singh Rajput
|
|
*/
|
|
|
|
#ifndef _ASM_X86_SYSCALLS_H
|
|
#define _ASM_X86_SYSCALLS_H
|
|
|
|
/* Common in X86_32 and X86_64 */
|
|
/* kernel/ioport.c */
|
|
long ksys_ioperm(unsigned long from, unsigned long num, int turn_on);
|
|
|
|
#endif /* _ASM_X86_SYSCALLS_H */
|