X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=arch%2Fmips%2Flib%2Fucmpdi2.c;h=bb4cb2f828ea9ae86090a06b859caf299f1a5c29;hb=f495fe8998b31d113d6041c105fd5652ec2cf5ee;hp=e2ff6072b5a3b9a2b4ecb3989e83b02ce5d62c4b;hpb=abdba717253382a669af9c719313ec602cc95a2d;p=firefly-linux-kernel-4.4.55.git diff --git a/arch/mips/lib/ucmpdi2.c b/arch/mips/lib/ucmpdi2.c index e2ff6072b5a3..bb4cb2f828ea 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 long a, unsigned long long b) +word_type __ucmpdi2(unsigned long long a, unsigned long long b) { const DWunion au = {.ll = a}; const DWunion bu = {.ll = b}; @@ -17,3 +17,5 @@ word_type __ucmpdi2 (unsigned long long a, unsigned long long b) return 2; return 1; } + +EXPORT_SYMBOL(__ucmpdi2);