-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[SPARC64]: More sparse warning fixes in process.c
arch/sparc64/kernel/process.c:504:17: warning: symbol 'sparc_do_fork' was not declared. Should it be static? arch/sparc64/kernel/process.c:655:5: warning: symbol 'dump_fpu' was not declared. Should it be static? arch/sparc64/kernel/process.c:708:16: warning: symbol 'sparc_execve' was not declared. Should it be static? Signed-off-by: David S. Miller <davem@davemloft.net>
- Loading branch information
David S. Miller
committed
Feb 20, 2008
1 parent
6ca94a1
commit b142240
Showing
2 changed files
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#ifndef _SPARC64_SYSCALLS_H | ||
#define _SPARC64_SYSCALLS_H | ||
|
||
struct pt_regs; | ||
|
||
extern asmlinkage long sparc_do_fork(unsigned long clone_flags, | ||
unsigned long stack_start, | ||
struct pt_regs *regs, | ||
unsigned long stack_size); | ||
|
||
extern asmlinkage int sparc_execve(struct pt_regs *regs); | ||
|
||
#endif /* _SPARC64_SYSCALLS_H */ |