aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sh64/kernel/pcibios.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/sh64/kernel/pcibios.c')
0 files changed, 0 insertions, 0 deletions
) 2008-2009 Red Hat, Inc. All rights reserved. * * This copyrighted material is made available to anyone wishing to use, * modify, copy, or redistribute it subject to the terms and conditions * of the GNU General Public License v.2. * * See asm-generic/syscall.h for descriptions of what we must do here. */ #ifndef _ASM_X86_SYSCALL_H #define _ASM_X86_SYSCALL_H #include <linux/sched.h> #include <linux/err.h> extern const unsigned long sys_call_table[]; /* * Only the low 32 bits of orig_ax are meaningful, so we return int. * This importantly ignores the high bits on 64-bit, so comparisons * sign-extend the low 32 bits. */ static inline int syscall_get_nr(struct task_struct *task, struct pt_regs *regs) { return regs->orig_ax; }