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.h | |
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.h')
-rw-r--r-- | arch/mips/math-emu/ieee754.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/arch/mips/math-emu/ieee754.h b/arch/mips/math-emu/ieee754.h index 967831e3206f..9e8c26e850fe 100644 --- a/arch/mips/math-emu/ieee754.h +++ b/arch/mips/math-emu/ieee754.h | |||
@@ -38,7 +38,7 @@ | |||
38 | #include <stdarg.h> | 38 | #include <stdarg.h> |
39 | #endif | 39 | #endif |
40 | 40 | ||
41 | struct ieee754dp_konst { | 41 | struct ieee754dp_const { |
42 | __BITFIELD_FIELD(unsigned sign:1, | 42 | __BITFIELD_FIELD(unsigned sign:1, |
43 | __BITFIELD_FIELD(unsigned bexp:11, | 43 | __BITFIELD_FIELD(unsigned bexp:11, |
44 | __BITFIELD_FIELD(unsigned manthi:20, | 44 | __BITFIELD_FIELD(unsigned manthi:20, |
@@ -47,7 +47,7 @@ struct ieee754dp_konst { | |||
47 | }; | 47 | }; |
48 | 48 | ||
49 | typedef union _ieee754dp { | 49 | typedef union _ieee754dp { |
50 | struct ieee754dp_konst oparts; | 50 | struct ieee754dp_const oparts; |
51 | struct { | 51 | struct { |
52 | __BITFIELD_FIELD(unsigned int sign:1, | 52 | __BITFIELD_FIELD(unsigned int sign:1, |
53 | __BITFIELD_FIELD(unsigned int bexp:11, | 53 | __BITFIELD_FIELD(unsigned int bexp:11, |
@@ -58,7 +58,7 @@ typedef union _ieee754dp { | |||
58 | u64 bits; | 58 | u64 bits; |
59 | } ieee754dp; | 59 | } ieee754dp; |
60 | 60 | ||
61 | struct ieee754sp_konst { | 61 | struct ieee754sp_const { |
62 | __BITFIELD_FIELD(unsigned sign:1, | 62 | __BITFIELD_FIELD(unsigned sign:1, |
63 | __BITFIELD_FIELD(unsigned bexp:8, | 63 | __BITFIELD_FIELD(unsigned bexp:8, |
64 | __BITFIELD_FIELD(unsigned mant:23, | 64 | __BITFIELD_FIELD(unsigned mant:23, |
@@ -66,7 +66,7 @@ struct ieee754sp_konst { | |||
66 | }; | 66 | }; |
67 | 67 | ||
68 | typedef union _ieee754sp { | 68 | typedef union _ieee754sp { |
69 | struct ieee754sp_konst parts; | 69 | struct ieee754sp_const parts; |
70 | float f; | 70 | float f; |
71 | u32 bits; | 71 | u32 bits; |
72 | } ieee754sp; | 72 | } ieee754sp; |
@@ -359,8 +359,8 @@ ieee754dp ieee754dp_dump(char *s, ieee754dp x); | |||
359 | #define IEEE754_SPCVAL_P1E31 15 /* + 1.0e31 */ | 359 | #define IEEE754_SPCVAL_P1E31 15 /* + 1.0e31 */ |
360 | #define IEEE754_SPCVAL_P1E63 16 /* + 1.0e63 */ | 360 | #define IEEE754_SPCVAL_P1E63 16 /* + 1.0e63 */ |
361 | 361 | ||
362 | extern const struct ieee754dp_konst __ieee754dp_spcvals[]; | 362 | extern const struct ieee754dp_const __ieee754dp_spcvals[]; |
363 | extern const struct ieee754sp_konst __ieee754sp_spcvals[]; | 363 | extern const struct ieee754sp_const __ieee754sp_spcvals[]; |
364 | #define ieee754dp_spcvals ((const ieee754dp *)__ieee754dp_spcvals) | 364 | #define ieee754dp_spcvals ((const ieee754dp *)__ieee754dp_spcvals) |
365 | #define ieee754sp_spcvals ((const ieee754sp *)__ieee754sp_spcvals) | 365 | #define ieee754sp_spcvals ((const ieee754sp *)__ieee754sp_spcvals) |
366 | 366 | ||