From 8c140fd466ca180579c323aded4e9c9231c3df48 Mon Sep 17 00:00:00 2001 From: Ralf Baechle Date: Thu, 1 May 2008 15:28:53 +0100 Subject: [PATCH] --- yaml --- r: 96417 b: refs/heads/master c: ad1d77a38575644b112340fd9115ac21dd533166 h: refs/heads/master i: 96415: 65338cf41ef800ac11b9c0ef187b18b77c802cd6 v: v3 --- [refs] | 2 +- trunk/arch/mips/kernel/cpu-bugs64.c | 2 +- trunk/include/asm-mips/compiler.h | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/[refs] b/[refs] index 201bc031f518..fe621f5d442a 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 1c9e919f48a49fda2ff2c607891cc17024e75122 +refs/heads/master: ad1d77a38575644b112340fd9115ac21dd533166 diff --git a/trunk/arch/mips/kernel/cpu-bugs64.c b/trunk/arch/mips/kernel/cpu-bugs64.c index a1b48af0992f..02b7713cf71c 100644 --- a/trunk/arch/mips/kernel/cpu-bugs64.c +++ b/trunk/arch/mips/kernel/cpu-bugs64.c @@ -38,7 +38,7 @@ static inline void align_mod(const int align, const int mod) ".endr\n\t" ".set pop" : - : GCC_IMM_ASM(align), GCC_IMM_ASM(mod)); + : GCC_IMM_ASM() (align), GCC_IMM_ASM() (mod)); } static inline void mult_sh_align_mod(long *v1, long *v2, long *w, diff --git a/trunk/include/asm-mips/compiler.h b/trunk/include/asm-mips/compiler.h index aa6b876bbd78..71f5c5cfc58a 100644 --- a/trunk/include/asm-mips/compiler.h +++ b/trunk/include/asm-mips/compiler.h @@ -9,10 +9,10 @@ #define _ASM_COMPILER_H #if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4) -#define GCC_IMM_ASM "n" +#define GCC_IMM_ASM() "n" #define GCC_REG_ACCUM "$0" #else -#define GCC_IMM_ASM "rn" +#define GCC_IMM_ASM() "rn" #define GCC_REG_ACCUM "accum" #endif