Commit bddc6059 authored by Arnd Bergmann's avatar Arnd Bergmann

score: fix function prototypes

Syscalls should return 'long' and be marked as 'asmlinkage'.
Functions that are only used in a single file should be 'static'.
Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
parent a1f8213b
...@@ -42,7 +42,7 @@ struct rt_sigframe { ...@@ -42,7 +42,7 @@ struct rt_sigframe {
struct ucontext rs_uc; struct ucontext rs_uc;
}; };
int setup_sigcontext(struct pt_regs *regs, struct sigcontext __user *sc) static int setup_sigcontext(struct pt_regs *regs, struct sigcontext __user *sc)
{ {
int err = 0; int err = 0;
unsigned long reg; unsigned long reg;
...@@ -76,7 +76,7 @@ int setup_sigcontext(struct pt_regs *regs, struct sigcontext __user *sc) ...@@ -76,7 +76,7 @@ int setup_sigcontext(struct pt_regs *regs, struct sigcontext __user *sc)
return err; return err;
} }
int restore_sigcontext(struct pt_regs *regs, struct sigcontext __user *sc) static int restore_sigcontext(struct pt_regs *regs, struct sigcontext __user *sc)
{ {
int err = 0; int err = 0;
u32 reg; u32 reg;
...@@ -118,8 +118,8 @@ int restore_sigcontext(struct pt_regs *regs, struct sigcontext __user *sc) ...@@ -118,8 +118,8 @@ int restore_sigcontext(struct pt_regs *regs, struct sigcontext __user *sc)
/* /*
* Determine which stack to use.. * Determine which stack to use..
*/ */
void __user *get_sigframe(struct k_sigaction *ka, struct pt_regs *regs, static void __user *get_sigframe(struct k_sigaction *ka,
size_t frame_size) struct pt_regs *regs, size_t frame_size)
{ {
unsigned long sp; unsigned long sp;
...@@ -134,7 +134,8 @@ void __user *get_sigframe(struct k_sigaction *ka, struct pt_regs *regs, ...@@ -134,7 +134,8 @@ void __user *get_sigframe(struct k_sigaction *ka, struct pt_regs *regs,
return (void __user*)((sp - frame_size) & ~7); return (void __user*)((sp - frame_size) & ~7);
} }
int score_sigaltstack(struct pt_regs *regs) asmlinkage long
score_sigaltstack(struct pt_regs *regs)
{ {
const stack_t __user *uss = (const stack_t __user *) regs->regs[4]; const stack_t __user *uss = (const stack_t __user *) regs->regs[4];
stack_t __user *uoss = (stack_t __user *) regs->regs[5]; stack_t __user *uoss = (stack_t __user *) regs->regs[5];
...@@ -143,7 +144,8 @@ int score_sigaltstack(struct pt_regs *regs) ...@@ -143,7 +144,8 @@ int score_sigaltstack(struct pt_regs *regs)
return do_sigaltstack(uss, uoss, usp); return do_sigaltstack(uss, uoss, usp);
} }
void score_rt_sigreturn(struct pt_regs *regs) asmlinkage long
score_rt_sigreturn(struct pt_regs *regs)
{ {
struct rt_sigframe __user *frame; struct rt_sigframe __user *frame;
sigset_t set; sigset_t set;
...@@ -183,9 +185,11 @@ void score_rt_sigreturn(struct pt_regs *regs) ...@@ -183,9 +185,11 @@ void score_rt_sigreturn(struct pt_regs *regs)
badframe: badframe:
force_sig(SIGSEGV, current); force_sig(SIGSEGV, current);
return 0;
} }
int setup_rt_frame(struct k_sigaction *ka, struct pt_regs *regs, static int setup_rt_frame(struct k_sigaction *ka, struct pt_regs *regs,
int signr, sigset_t *set, siginfo_t *info) int signr, sigset_t *set, siginfo_t *info)
{ {
struct rt_sigframe __user *frame; struct rt_sigframe __user *frame;
...@@ -238,7 +242,7 @@ int setup_rt_frame(struct k_sigaction *ka, struct pt_regs *regs, ...@@ -238,7 +242,7 @@ int setup_rt_frame(struct k_sigaction *ka, struct pt_regs *regs,
return -EFAULT; return -EFAULT;
} }
int handle_signal(unsigned long sig, siginfo_t *info, static int handle_signal(unsigned long sig, siginfo_t *info,
struct k_sigaction *ka, sigset_t *oldset, struct pt_regs *regs) struct k_sigaction *ka, sigset_t *oldset, struct pt_regs *regs)
{ {
int ret; int ret;
...@@ -278,7 +282,7 @@ int handle_signal(unsigned long sig, siginfo_t *info, ...@@ -278,7 +282,7 @@ int handle_signal(unsigned long sig, siginfo_t *info,
return ret; return ret;
} }
void do_signal(struct pt_regs *regs) static void do_signal(struct pt_regs *regs)
{ {
struct k_sigaction ka; struct k_sigaction ka;
sigset_t *oldset; sigset_t *oldset;
......
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
unsigned long shm_align_mask = PAGE_SIZE - 1; unsigned long shm_align_mask = PAGE_SIZE - 1;
EXPORT_SYMBOL(shm_align_mask); EXPORT_SYMBOL(shm_align_mask);
asmlinkage unsigned long asmlinkage unsigned
sys_mmap2(unsigned long addr, unsigned long len, unsigned long prot, sys_mmap2(unsigned long addr, unsigned long len, unsigned long prot,
unsigned long flags, unsigned long fd, unsigned long pgoff) unsigned long flags, unsigned long fd, unsigned long pgoff)
{ {
...@@ -66,7 +66,8 @@ sys_mmap2(unsigned long addr, unsigned long len, unsigned long prot, ...@@ -66,7 +66,8 @@ sys_mmap2(unsigned long addr, unsigned long len, unsigned long prot,
* Clone a task - this clones the calling program thread. * Clone a task - this clones the calling program thread.
* This is called indirectly via a small wrapper * This is called indirectly via a small wrapper
*/ */
int score_clone(struct pt_regs *regs) asmlinkage long
score_clone(struct pt_regs *regs)
{ {
unsigned long clone_flags; unsigned long clone_flags;
unsigned long newsp; unsigned long newsp;
......
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
#include <asm/scoreregs.h> #include <asm/scoreregs.h>
irqreturn_t timer_interrupt(int irq, void *dev_id) static irqreturn_t timer_interrupt(int irq, void *dev_id)
{ {
struct clock_event_device *evdev = dev_id; struct clock_event_device *evdev = dev_id;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment