summaryrefslogtreecommitdiffstats
path: root/lib/ucmpdi2.c
diff options
context:
space:
mode:
authorPalmer Dabbelt <palmer@sifive.com>2018-04-11 03:50:16 -0400
committerJames Hogan <jhogan@kernel.org>2018-04-23 11:39:35 -0400
commitaad5a537aca45efca82ff1eac79bf32e5547b521 (patch)
tree666c5749d780bcef19abb68fadeba62dc3875ae6 /lib/ucmpdi2.c
parent3bc6505150fd1139dbd29695cf950d253c361725 (diff)
Add notrace to lib/ucmpdi2.c
As part of the MIPS conversion to use the generic GCC library routines, Matt Redfearn discovered that I'd missed a notrace on __ucmpdi2(). This patch rectifies the problem. Signed-off-by: Palmer Dabbelt <palmer@sifive.com> Reviewed-by: Matt Redfearn <matt.redfearn@mips.com> Signed-off-by: Matt Redfearn <matt.redfearn@mips.com> Cc: Ralf Baechle <ralf@linux-mips.org> Cc: Matt Redfearn <matt.redfearn@mips.com> Cc: Antony Pavlov <antonynpavlov@gmail.com> Cc: linux-mips@linux-mips.org Patchwork: https://patchwork.linux-mips.org/patch/19048/ Signed-off-by: James Hogan <jhogan@kernel.org>
Diffstat (limited to 'lib/ucmpdi2.c')
-rw-r--r--lib/ucmpdi2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ucmpdi2.c b/lib/ucmpdi2.c
index 25ca2d4c1e19..597998169a96 100644
--- a/lib/ucmpdi2.c
+++ b/lib/ucmpdi2.c
@@ -17,7 +17,7 @@
17#include <linux/module.h> 17#include <linux/module.h>
18#include <linux/libgcc.h> 18#include <linux/libgcc.h>
19 19
20word_type __ucmpdi2(unsigned long long a, unsigned long long b) 20word_type notrace __ucmpdi2(unsigned long long a, unsigned long long b)
21{ 21{
22 const DWunion au = {.ll = a}; 22 const DWunion au = {.ll = a};
23 const DWunion bu = {.ll = b}; 23 const DWunion bu = {.ll = b};