diff options
author | Tony Lindgren <tony@atomide.com> | 2010-03-01 17:19:05 -0500 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2010-03-01 17:19:05 -0500 |
commit | d702d12167a2c05a346f49aac7a311d597762495 (patch) | |
tree | baae42c299cce34d6df24b5d01f8b1d0b481bd9a /arch/mips/math-emu | |
parent | 9418c65f9bd861d0f7e39aab9cfb3aa6f2275d11 (diff) | |
parent | ac0f6f927db539e03e1f3f61bcd4ed57d5cde7a9 (diff) |
Merge with mainline to remove plat-omap/Kconfig conflict
Conflicts:
arch/arm/plat-omap/Kconfig
Diffstat (limited to 'arch/mips/math-emu')
-rw-r--r-- | arch/mips/math-emu/ieee754d.c | 1 | ||||
-rw-r--r-- | arch/mips/math-emu/ieee754dp.c | 1 | ||||
-rw-r--r-- | arch/mips/math-emu/ieee754sp.c | 1 | ||||
-rw-r--r-- | arch/mips/math-emu/ieee754xcpt.c | 1 |
4 files changed, 0 insertions, 4 deletions
diff --git a/arch/mips/math-emu/ieee754d.c b/arch/mips/math-emu/ieee754d.c index 7e900f30987e..a0325337b76c 100644 --- a/arch/mips/math-emu/ieee754d.c +++ b/arch/mips/math-emu/ieee754d.c | |||
@@ -135,4 +135,3 @@ ieee754sp ieee754sp_dump(char *m, ieee754sp x) | |||
135 | printk("\n"); | 135 | printk("\n"); |
136 | return x; | 136 | return x; |
137 | } | 137 | } |
138 | |||
diff --git a/arch/mips/math-emu/ieee754dp.c b/arch/mips/math-emu/ieee754dp.c index 6d2d89f32472..2f22fd7fd784 100644 --- a/arch/mips/math-emu/ieee754dp.c +++ b/arch/mips/math-emu/ieee754dp.c | |||
@@ -148,7 +148,6 @@ ieee754dp ieee754dp_format(int sn, int xe, u64 xm) | |||
148 | 148 | ||
149 | switch(ieee754_csr.rm) { | 149 | switch(ieee754_csr.rm) { |
150 | case IEEE754_RN: | 150 | case IEEE754_RN: |
151 | return ieee754dp_zero(sn); | ||
152 | case IEEE754_RZ: | 151 | case IEEE754_RZ: |
153 | return ieee754dp_zero(sn); | 152 | return ieee754dp_zero(sn); |
154 | case IEEE754_RU: /* toward +Infinity */ | 153 | case IEEE754_RU: /* toward +Infinity */ |
diff --git a/arch/mips/math-emu/ieee754sp.c b/arch/mips/math-emu/ieee754sp.c index 463534045ab6..a19b72185ab9 100644 --- a/arch/mips/math-emu/ieee754sp.c +++ b/arch/mips/math-emu/ieee754sp.c | |||
@@ -149,7 +149,6 @@ ieee754sp ieee754sp_format(int sn, int xe, unsigned xm) | |||
149 | 149 | ||
150 | switch(ieee754_csr.rm) { | 150 | switch(ieee754_csr.rm) { |
151 | case IEEE754_RN: | 151 | case IEEE754_RN: |
152 | return ieee754sp_zero(sn); | ||
153 | case IEEE754_RZ: | 152 | case IEEE754_RZ: |
154 | return ieee754sp_zero(sn); | 153 | return ieee754sp_zero(sn); |
155 | case IEEE754_RU: /* toward +Infinity */ | 154 | case IEEE754_RU: /* toward +Infinity */ |
diff --git a/arch/mips/math-emu/ieee754xcpt.c b/arch/mips/math-emu/ieee754xcpt.c index 7d8ef8965067..e02423a0ae23 100644 --- a/arch/mips/math-emu/ieee754xcpt.c +++ b/arch/mips/math-emu/ieee754xcpt.c | |||
@@ -46,4 +46,3 @@ void ieee754_xcpt(struct ieee754xctx *xcp) | |||
46 | printk(KERN_DEBUG "floating point exception in \"%s\", type=%s\n", | 46 | printk(KERN_DEBUG "floating point exception in \"%s\", type=%s\n", |
47 | xcp->op, rtnames[xcp->rt]); | 47 | xcp->op, rtnames[xcp->rt]); |
48 | } | 48 | } |
49 | |||