aboutsummaryrefslogtreecommitdiff
path: root/arch/arm/nwfpe/softfloat.h
diff options
context:
space:
mode:
authorBen Dooks <ben-linux@fluff.org>2005-10-12 19:58:10 +0100
committerRussell King <rmk+kernel@arm.linux.org.uk>2005-10-12 19:58:10 +0100
commit6ec5e7f3656f0397b7e8b39a7dcc77937d187596 (patch)
treebbf8e615955817764637b7a2ecd2e228835b2cc5 /arch/arm/nwfpe/softfloat.h
parent737d0bb7701cdebb661e4db0236071a7df977777 (diff)
[ARM] 2978/1: nwfpe - clean up sparse errors
Patch from Ben Dooks The NWFPE is producing a number of errors from sparse due to not defining a number of functions in the header files. Signed-off-by: Ben Dooks <ben-linux@fluff.org> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/nwfpe/softfloat.h')
-rw-r--r--arch/arm/nwfpe/softfloat.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/nwfpe/softfloat.h b/arch/arm/nwfpe/softfloat.h
index 1c8799b9ee4..14151700b6b 100644
--- a/arch/arm/nwfpe/softfloat.h
+++ b/arch/arm/nwfpe/softfloat.h
@@ -265,4 +265,7 @@ static inline flag float64_lt_nocheck(float64 a, float64 b)
return (a != b) && (aSign ^ (a < b));
}
+extern flag float32_is_nan( float32 a );
+extern flag float64_is_nan( float64 a );
+
#endif