diff options
author | Thomas Bogendoerfer <tsbogend@alpha.franken.de> | 2009-04-21 13:44:13 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-04-21 16:50:58 +0200 |
commit | 8b9cf76d0fa6cd98fe42dd2f86460d6ede55fed8 (patch) | |
tree | 2c9f926f83bdcbc260304aa243087613a3894871 | |
parent | NFS: Fix the XDR iovec calculation in nfs3_xdr_setaclargs (diff) | |
download | linux-8b9cf76d0fa6cd98fe42dd2f86460d6ede55fed8.tar.xz linux-8b9cf76d0fa6cd98fe42dd2f86460d6ede55fed8.zip |
Fix SYSCALL_ALIAS for older MIPS assembler
Older MIPS assembler don't support .set for defining aliases.
Using = works for old and new assembers.
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Acked-by: Ralf Baechle <ralf@linux-mips.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | include/linux/syscalls.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/syscalls.h b/include/linux/syscalls.h index dabe4ad89141..40617c1d8976 100644 --- a/include/linux/syscalls.h +++ b/include/linux/syscalls.h @@ -148,7 +148,7 @@ struct old_linux_dirent; asm ("\t.globl " #alias "\n\t.set " #alias ", " #name "\n" \ "\t.globl ." #alias "\n\t.set ." #alias ", ." #name) #else -#ifdef CONFIG_ALPHA +#if defined(CONFIG_ALPHA) || defined(CONFIG_MIPS) #define SYSCALL_ALIAS(alias, name) \ asm ( #alias " = " #name "\n\t.globl " #alias) #else |