diff options
| author | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-24 19:00:26 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-24 19:00:26 -0400 |
| commit | 2f66b529d9d131971e2509aee5478c61ca258ece (patch) | |
| tree | 7a670d9eb76839ed5eecbe0cc1c1c25ba7ba446c /arch/mips/kernel/syscall.c | |
| parent | 1e66239e23dd0422baf891bf6af0b65ac632b676 (diff) | |
| parent | cdcc9eb5e014a58aba047193a73a0de8b61b988d (diff) | |
Merge branch 'upstream' of git://ftp.linux-mips.org/pub/scm/upstream-linus
* 'upstream' of git://ftp.linux-mips.org/pub/scm/upstream-linus:
[MIPS] Fix marge error due to conflict in arch/mips/kernel/head.S
[MIPS] ARC: Remove unused arch/mips/arc/console.c
[MIPS] SNI: sniprom
[MIPS] Jazz: remove unneeded reset functions
[MIPS] Whitespace cleanup.
[MIPS] Make resources for ds1742 "static __initdata"
[MIPS] Replace __attribute_used__ with __used
[MIPS] Jazz: Remove unused arch/mips/jazz/io.c
[MIPS] Mark prom_free_prom_memory as __init_refok
[MIPS] MIPSsim: Fix cflags
Diffstat (limited to 'arch/mips/kernel/syscall.c')
| -rw-r--r-- | arch/mips/kernel/syscall.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/mips/kernel/syscall.c b/arch/mips/kernel/syscall.c index b947c61c0cc8..b53f7edbc159 100644 --- a/arch/mips/kernel/syscall.c +++ b/arch/mips/kernel/syscall.c | |||
| @@ -167,14 +167,14 @@ sys_mmap2(unsigned long addr, unsigned long len, unsigned long prot, | |||
| 167 | } | 167 | } |
| 168 | 168 | ||
| 169 | save_static_function(sys_fork); | 169 | save_static_function(sys_fork); |
| 170 | __attribute_used__ noinline static int | 170 | static int __used noinline |
| 171 | _sys_fork(nabi_no_regargs struct pt_regs regs) | 171 | _sys_fork(nabi_no_regargs struct pt_regs regs) |
| 172 | { | 172 | { |
| 173 | return do_fork(SIGCHLD, regs.regs[29], ®s, 0, NULL, NULL); | 173 | return do_fork(SIGCHLD, regs.regs[29], ®s, 0, NULL, NULL); |
| 174 | } | 174 | } |
| 175 | 175 | ||
| 176 | save_static_function(sys_clone); | 176 | save_static_function(sys_clone); |
| 177 | __attribute_used__ noinline static int | 177 | static int __used noinline |
| 178 | _sys_clone(nabi_no_regargs struct pt_regs regs) | 178 | _sys_clone(nabi_no_regargs struct pt_regs regs) |
| 179 | { | 179 | { |
| 180 | unsigned long clone_flags; | 180 | unsigned long clone_flags; |
