summaryrefslogtreecommitdiff
path: root/arch/mips/math-emu/ieee754.h
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2014-04-16 01:16:02 +0200
committerRalf Baechle <ralf@linux-mips.org>2014-05-21 11:12:48 +0200
commit23708818210cec367083ce9c09c6e71a5767d7e3 (patch)
treecac11f2d22f16c346f65516cb8af096ba80f8f03 /arch/mips/math-emu/ieee754.h
parentcae55066cb1ce3f8572ddddbd3ec3c54b973a89c (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.h12
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 @@
#include <stdarg.h>
#endif
-struct ieee754dp_konst {
+struct ieee754dp_const {
__BITFIELD_FIELD(unsigned sign:1,
__BITFIELD_FIELD(unsigned bexp:11,
__BITFIELD_FIELD(unsigned manthi:20,
@@ -47,7 +47,7 @@ struct ieee754dp_konst {
};
typedef union _ieee754dp {
- struct ieee754dp_konst oparts;
+ struct ieee754dp_const oparts;
struct {
__BITFIELD_FIELD(unsigned int sign:1,
__BITFIELD_FIELD(unsigned int bexp:11,
@@ -58,7 +58,7 @@ typedef union _ieee754dp {
u64 bits;
} ieee754dp;
-struct ieee754sp_konst {
+struct ieee754sp_const {
__BITFIELD_FIELD(unsigned sign:1,
__BITFIELD_FIELD(unsigned bexp:8,
__BITFIELD_FIELD(unsigned mant:23,
@@ -66,7 +66,7 @@ struct ieee754sp_konst {
};
typedef union _ieee754sp {
- struct ieee754sp_konst parts;
+ struct ieee754sp_const parts;
float f;
u32 bits;
} ieee754sp;
@@ -359,8 +359,8 @@ ieee754dp ieee754dp_dump(char *s, ieee754dp x);
#define IEEE754_SPCVAL_P1E31 15 /* + 1.0e31 */
#define IEEE754_SPCVAL_P1E63 16 /* + 1.0e63 */
-extern const struct ieee754dp_konst __ieee754dp_spcvals[];
-extern const struct ieee754sp_konst __ieee754sp_spcvals[];
+extern const struct ieee754dp_const __ieee754dp_spcvals[];
+extern const struct ieee754sp_const __ieee754sp_spcvals[];
#define ieee754dp_spcvals ((const ieee754dp *)__ieee754dp_spcvals)
#define ieee754sp_spcvals ((const ieee754sp *)__ieee754sp_spcvals)