diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2000-10-27 02:09:36 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2000-10-27 02:09:36 +0000 |
commit | be2f2eb3544beda4cbc837e2b62812c7cde9c952 (patch) | |
tree | caaaf4bed5f6e334fba70699c72e4903342e53a9 /arch/mips | |
parent | e9c015f2d9d7008d0f67ac360866b2b8cf3d4567 (diff) |
Fix bug in macro arguments naming.
Diffstat (limited to 'arch/mips')
-rw-r--r-- | arch/mips/kernel/unaligned.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/arch/mips/kernel/unaligned.c b/arch/mips/kernel/unaligned.c index 9953922b7..a5b8791c1 100644 --- a/arch/mips/kernel/unaligned.c +++ b/arch/mips/kernel/unaligned.c @@ -1,5 +1,4 @@ -/* $Id: unaligned.c,v 1.7 1999/12/04 03:59:00 ralf Exp $ - * +/* * Handle unaligned accesses by emulation. * * This file is subject to the terms and conditions of the GNU General Public @@ -91,8 +90,8 @@ * User code may only access USEG; kernel code may access the * entire address space. */ -#define check_axs(p,a,s) \ - if ((long)(~(pc) & ((a) | ((a)+(s)))) < 0) \ +#define check_axs(pc,a,s) \ + if ((long)(~(pc) & ((a) | ((a)+(s)))) < 0) \ goto sigbus; static inline void |