| To: | linux-kernel@vger.kernel.org, linux-mips@linux-mips.org |
|---|---|
| Subject: | [PATCH] Fix SYSCALL_ALIAS for older MIPS assembler |
| From: | Thomas Bogendoerfer <tsbogend@alpha.franken.de> |
| Date: | Tue, 21 Apr 2009 13:44:13 +0200 (CEST) |
| Cc: | torvalds@linux-foundation.org |
| Original-recipient: | rfc822;linux-mips@linux-mips.org |
| Sender: | linux-mips-bounce@linux-mips.org |
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>
---
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 dabe4ad..40617c1 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
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | Re: in mips how to change the start address to the new second boot loader ?, nagalakshmi veeramallu |
|---|---|
| Next by Date: | Re: in mips how to change the start address to the new second boot loader ?, Kevin D. Kissell |
| Previous by Thread: | [PATCH v5 1/2] Alchemy: rewrite GPIO support., Manuel Lauss |
| Next by Thread: | [PATCH] IP27: Fix clash with NMI_OFFSET from hardirq.h, Thomas Bogendoerfer |
| Indexes: | [Date] [Thread] [Top] [All Lists] |