Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=1ff082882f0f36536ab91b020573607668f9bb61
Commit:     1ff082882f0f36536ab91b020573607668f9bb61
Parent:     e078761a0a815e142eee9f546f821ea259c82f7c
Author:     Ben Dooks <[EMAIL PROTECTED]>
AuthorDate: Mon May 28 19:03:47 2007 +0100
Committer:  Russell King <[EMAIL PROTECTED]>
CommitDate: Wed May 30 13:15:34 2007 +0100

    [ARM] 4416/1: NWFPE: fix undeclared symbols
    
    Fix the undeclared symbols sparse is warning about.
    
    arch/arm/nwfpe/softfloat.c:1727:7: warning: symbol 'float64_to_uint32' was 
not declared. Should it be static?
    arch/arm/nwfpe/softfloat.c:1753:7: warning: symbol 
'float64_to_uint32_round_to_zero' was not declared. Should it be static?
    
    Signed-off-by: Ben Dooks <[EMAIL PROTECTED]>
    Signed-off-by: Russell King <[EMAIL PROTECTED]>
---
 arch/arm/nwfpe/softfloat.h |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/arch/arm/nwfpe/softfloat.h b/arch/arm/nwfpe/softfloat.h
index 0a30674..260fe29 100644
--- a/arch/arm/nwfpe/softfloat.h
+++ b/arch/arm/nwfpe/softfloat.h
@@ -273,4 +273,7 @@ static inline flag float64_lt_nocheck(float64 a, float64 b)
 extern flag float32_is_nan( float32 a );
 extern flag float64_is_nan( float64 a );
 
+extern int32 float64_to_uint32( struct roundingData *roundData, float64 a );
+extern int32 float64_to_uint32_round_to_zero( float64 a );
+
 #endif
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to