diff options
-rw-r--r-- | arch/mips/kernel/unaligned.c | 7 | ||||
-rw-r--r-- | arch/mips64/kernel/unaligned.c | 7 |
2 files changed, 6 insertions, 8 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 diff --git a/arch/mips64/kernel/unaligned.c b/arch/mips64/kernel/unaligned.c index 5381642f1..5c6ecb15d 100644 --- a/arch/mips64/kernel/unaligned.c +++ b/arch/mips64/kernel/unaligned.c @@ -1,5 +1,4 @@ -/* $Id: unaligned.c,v 1.2 1999/11/23 17:12:50 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 |