GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / blackfin / lib / strcpy.S
bloba6a0c63638066ede9095adda1cbb25bbae1f10f2
1 /*
2  * Copyright 2005-2010 Analog Devices Inc.
3  *
4  * Licensed under the ADI BSD license or the GPL-2 (or later)
5  */
7 #include <linux/linkage.h>
9 /* void *strcpy(char *dest, const char *src);
10  * R0 = address (dest)
11  * R1 = address (src)
12  *
13  * Returns a pointer to the destination string dest
14  */
16 #ifdef CONFIG_STRCPY_L1
17 .section .l1.text
18 #else
19 .text
20 #endif
22 .align 2
24 ENTRY(_strcpy)
25         P0 = R0 ;       /* dst*/
26         P1 = R1 ;       /* src*/
29         R1 = B [P1++] (Z);
30         B [P0++] = R1;
31         CC = R1;
32         if cc jump 1b (bp);
33         RTS;
35 ENDPROC(_strcpy)