syscalls.h 374 B

123456789101112131415
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * syscalls.h - Linux syscall interfaces (arch-specific)
  4. *
  5. * Copyright (c) 2008 Jaswinder Singh Rajput
  6. */
  7. #ifndef _ASM_X86_SYSCALLS_H
  8. #define _ASM_X86_SYSCALLS_H
  9. /* Common in X86_32 and X86_64 */
  10. /* kernel/ioport.c */
  11. long ksys_ioperm(unsigned long from, unsigned long num, int turn_on);
  12. #endif /* _ASM_X86_SYSCALLS_H */