Commit a88a8eff authored by Linus Torvalds's avatar Linus Torvalds

Merge branch 'upstream' of git://ftp.linux-mips.org/pub/scm/upstream-linus

* 'upstream' of git://ftp.linux-mips.org/pub/scm/upstream-linus:
  [MIPS] cpu-bugs64.c: GCC 3.3 constraint workaround
  [MIPS] DEC: Initialise ioasic_ssr_lock
parents c39c06b9 09abbcff
...@@ -55,7 +55,7 @@ EXPORT_SYMBOL(dec_kn_slot_size); ...@@ -55,7 +55,7 @@ EXPORT_SYMBOL(dec_kn_slot_size);
int dec_tc_bus; int dec_tc_bus;
spinlock_t ioasic_ssr_lock; DEFINE_SPINLOCK(ioasic_ssr_lock);
volatile u32 *ioasic_base; volatile u32 *ioasic_base;
......
/* /*
* Copyright (C) 2003, 2004 Maciej W. Rozycki * Copyright (C) 2003, 2004, 2007 Maciej W. Rozycki
* *
* This program is free software; you can redistribute it and/or * This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License * modify it under the terms of the GNU General Public License
...@@ -29,7 +29,7 @@ static inline void align_mod(const int align, const int mod) ...@@ -29,7 +29,7 @@ static inline void align_mod(const int align, const int mod)
".endr\n\t" ".endr\n\t"
".set pop" ".set pop"
: :
: "rn" (align), "rn" (mod)); : GCC_IMM_ASM (align), GCC_IMM_ASM (mod));
} }
static inline void mult_sh_align_mod(long *v1, long *v2, long *w, static inline void mult_sh_align_mod(long *v1, long *v2, long *w,
......
/* /*
* Copyright (C) 2004 Maciej W. Rozycki * Copyright (C) 2004, 2007 Maciej W. Rozycki
* *
* This file is subject to the terms and conditions of the GNU General Public * This file is subject to the terms and conditions of the GNU General Public
* License. See the file "COPYING" in the main directory of this archive * License. See the file "COPYING" in the main directory of this archive
...@@ -9,8 +9,10 @@ ...@@ -9,8 +9,10 @@
#define _ASM_COMPILER_H #define _ASM_COMPILER_H
#if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4) #if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)
#define GCC_IMM_ASM "n"
#define GCC_REG_ACCUM "$0" #define GCC_REG_ACCUM "$0"
#else #else
#define GCC_IMM_ASM "rn"
#define GCC_REG_ACCUM "accum" #define GCC_REG_ACCUM "accum"
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment