From: Ralf Baechle Date: Tue, 26 Jun 2007 17:37:20 +0000 (+0200) Subject: [MIPS] __ucmpdi2 arguments are unsigned long long. X-Git-Tag: v2.6.22-rc7~47^2~11 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=3ca507920d4f618a960aed19609bcce6c4d15387;p=linux-2.6-omap-h63xx.git [MIPS] __ucmpdi2 arguments are unsigned long long. Reported by Eugene Surovegin . Signed-off-by: Ralf Baechle --- diff --git a/arch/mips/lib/ucmpdi2.c b/arch/mips/lib/ucmpdi2.c index e9ff258ef02..e2ff6072b5a 100644 --- a/arch/mips/lib/ucmpdi2.c +++ b/arch/mips/lib/ucmpdi2.c @@ -2,7 +2,7 @@ #include "libgcc.h" -word_type __ucmpdi2 (unsigned long a, unsigned long b) +word_type __ucmpdi2 (unsigned long long a, unsigned long long b) { const DWunion au = {.ll = a}; const DWunion bu = {.ll = b};