aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sparc/lib/strncmp_32.S
diff options
context:
space:
mode:
Diffstat (limited to 'arch/sparc/lib/strncmp_32.S')
-rw-r--r--arch/sparc/lib/strncmp_32.S7
1 files changed, 4 insertions, 3 deletions
diff --git a/arch/sparc/lib/strncmp_32.S b/arch/sparc/lib/strncmp_32.S
index 1476f574db22..c0d1b568c1c5 100644
--- a/arch/sparc/lib/strncmp_32.S
+++ b/arch/sparc/lib/strncmp_32.S
@@ -3,10 +3,10 @@
3 * generic strncmp routine. 3 * generic strncmp routine.
4 */ 4 */
5 5
6#include <linux/linkage.h>
7
6 .text 8 .text
7 .align 4 9ENTRY(strncmp)
8 .global strncmp
9strncmp:
10 mov %o0, %g3 10 mov %o0, %g3
11 mov 0, %o3 11 mov 0, %o3
12 12
@@ -115,3 +115,4 @@ strncmp:
115 and %g2, 0xff, %o0 115 and %g2, 0xff, %o0
116 retl 116 retl
117 sub %o3, %o0, %o0 117 sub %o3, %o0, %o0
118ENDPROC(strncmp)