diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2014-04-15 19:16:02 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2014-05-21 05:12:48 -0400 |
commit | 23708818210cec367083ce9c09c6e71a5767d7e3 (patch) | |
tree | cac11f2d22f16c346f65516cb8af096ba80f8f03 /arch/mips/math-emu/ieee754.c | |
parent | cae55066cb1ce3f8572ddddbd3ec3c54b973a89c (diff) |
MIPS: math-emu: Use English spelling of `constant' rather than Danish.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/math-emu/ieee754.c')
-rw-r--r-- | arch/mips/math-emu/ieee754.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/mips/math-emu/ieee754.c b/arch/mips/math-emu/ieee754.c index e7c314c9f46a..141f0cb40df4 100644 --- a/arch/mips/math-emu/ieee754.c +++ b/arch/mips/math-emu/ieee754.c | |||
@@ -56,7 +56,7 @@ | |||
56 | #define DPSTR(s, b, mh, ml) {s, b, mh, ml} | 56 | #define DPSTR(s, b, mh, ml) {s, b, mh, ml} |
57 | #endif | 57 | #endif |
58 | 58 | ||
59 | const struct ieee754dp_konst __ieee754dp_spcvals[] = { | 59 | const struct ieee754dp_const __ieee754dp_spcvals[] = { |
60 | DPSTR(0, DP_EMIN - 1 + DP_EBIAS, 0, 0), /* + zero */ | 60 | DPSTR(0, DP_EMIN - 1 + DP_EBIAS, 0, 0), /* + zero */ |
61 | DPSTR(1, DP_EMIN - 1 + DP_EBIAS, 0, 0), /* - zero */ | 61 | DPSTR(1, DP_EMIN - 1 + DP_EBIAS, 0, 0), /* - zero */ |
62 | DPSTR(0, DP_EBIAS, 0, 0), /* + 1.0 */ | 62 | DPSTR(0, DP_EBIAS, 0, 0), /* + 1.0 */ |
@@ -76,7 +76,7 @@ const struct ieee754dp_konst __ieee754dp_spcvals[] = { | |||
76 | DPSTR(0, 63 + DP_EBIAS, 0, 0), /* + 1.0e63 */ | 76 | DPSTR(0, 63 + DP_EBIAS, 0, 0), /* + 1.0e63 */ |
77 | }; | 77 | }; |
78 | 78 | ||
79 | const struct ieee754sp_konst __ieee754sp_spcvals[] = { | 79 | const struct ieee754sp_const __ieee754sp_spcvals[] = { |
80 | SPSTR(0, SP_EMIN - 1 + SP_EBIAS, 0), /* + zero */ | 80 | SPSTR(0, SP_EMIN - 1 + SP_EBIAS, 0), /* + zero */ |
81 | SPSTR(1, SP_EMIN - 1 + SP_EBIAS, 0), /* - zero */ | 81 | SPSTR(1, SP_EMIN - 1 + SP_EBIAS, 0), /* - zero */ |
82 | SPSTR(0, SP_EBIAS, 0), /* + 1.0 */ | 82 | SPSTR(0, SP_EBIAS, 0), /* + 1.0 */ |