Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 6962
b: refs/heads/master
c: 766160c
h: refs/heads/master
v: v3
  • Loading branch information
Yoichi Yuasa authored and Linus Torvalds committed Sep 5, 2005
1 parent 4915164 commit efe40ca
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ed5ba2fbc6d03c41c4c3334648a6569bc42da764
refs/heads/master: 766160c29fadbafad1d6eb5e965922c7e78beb88
4 changes: 2 additions & 2 deletions trunk/arch/mips/kernel/genex.S
Original file line number Diff line number Diff line change
Expand Up @@ -244,10 +244,10 @@ NESTED(nmi_handler, PT_SIZE, sp)
start with an n and gas will believe \n is ok ... */
.macro __BUILD_verbose nexception
LONG_L a1, PT_EPC(sp)
#if CONFIG_32BIT
#ifdef CONFIG_32BIT
PRINT("Got \nexception at %08lx\012")
#endif
#if CONFIG_64BIT
#ifdef CONFIG_64BIT
PRINT("Got \nexception at %016lx\012")
#endif
.endm
Expand Down
12 changes: 6 additions & 6 deletions trunk/arch/mips/math-emu/cp1emu.c
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ static int cop1Emulate(struct pt_regs *xcp, struct mips_fpu_soft_struct *ctx)
case cop1_op:
switch (MIPSInst_RS(ir)) {

#if __mips64 && !defined(SINGLE_ONLY_FPU)
#if defined(__mips64) && !defined(SINGLE_ONLY_FPU)
case dmfc_op:
/* copregister fs -> gpr[rt] */
if (MIPSInst_RT(ir) != 0) {
Expand Down Expand Up @@ -805,7 +805,7 @@ static int fpu_emu(struct pt_regs *xcp, struct mips_fpu_soft_struct *ctx,
ieee754dp d;
ieee754sp s;
int w;
#if __mips64
#ifdef __mips64
s64 l;
#endif
} rv; /* resulting value */
Expand Down Expand Up @@ -950,7 +950,7 @@ static int fpu_emu(struct pt_regs *xcp, struct mips_fpu_soft_struct *ctx,
}
#endif /* __mips >= 2 */

#if __mips64 && !defined(SINGLE_ONLY_FPU)
#if defined(__mips64) && !defined(SINGLE_ONLY_FPU)
case fcvtl_op:{
ieee754sp fs;

Expand Down Expand Up @@ -1125,7 +1125,7 @@ static int fpu_emu(struct pt_regs *xcp, struct mips_fpu_soft_struct *ctx,
}
#endif

#if __mips64 && !defined(SINGLE_ONLY_FPU)
#if defined(__mips64) && !defined(SINGLE_ONLY_FPU)
case fcvtl_op:{
ieee754dp fs;

Expand Down Expand Up @@ -1203,7 +1203,7 @@ static int fpu_emu(struct pt_regs *xcp, struct mips_fpu_soft_struct *ctx,
break;
}

#if __mips64 && !defined(SINGLE_ONLY_FPU)
#if defined(__mips64) && !defined(SINGLE_ONLY_FPU)
case l_fmt:{
switch (MIPSInst_FUNC(ir)) {
case fcvts_op:
Expand Down Expand Up @@ -1267,7 +1267,7 @@ static int fpu_emu(struct pt_regs *xcp, struct mips_fpu_soft_struct *ctx,
case w_fmt:
SITOREG(rv.w, MIPSInst_FD(ir));
break;
#if __mips64 && !defined(SINGLE_ONLY_FPU)
#if defined(__mips64) && !defined(SINGLE_ONLY_FPU)
case l_fmt:
DITOREG(rv.l, MIPSInst_FD(ir));
break;
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/mips/mm/tlbex.c
Original file line number Diff line number Diff line change
Expand Up @@ -516,7 +516,7 @@ static __init int rel_lo(long val)

static __init void i_LA_mostly(u32 **buf, unsigned int rs, long addr)
{
#if CONFIG_64BIT
#ifdef CONFIG_64BIT
if (!in_compat_space_p(addr)) {
i_lui(buf, rs, rel_highest(addr));
if (rel_higher(addr))
Expand Down
2 changes: 1 addition & 1 deletion trunk/include/asm-mips/reg.h
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@

#endif

#if CONFIG_64BIT
#ifdef CONFIG_64BIT

#define EF_R0 0
#define EF_R1 1
Expand Down

0 comments on commit efe40ca

Please sign in to comment.