Title: [8716] trunk/arch/blackfin/lib/strncpy.S: Fix bug [#6024]
Revision
8716
Author
rgetz
Date
2010-05-17 15:46:52 -0400 (Mon, 17 May 2010)

Log Message

Fix bug [#6024]

Modified Paths

Diff

Modified: trunk/arch/blackfin/lib/strncpy.S (8715 => 8716)


--- trunk/arch/blackfin/lib/strncpy.S	2010-05-17 10:43:43 UTC (rev 8715)
+++ trunk/arch/blackfin/lib/strncpy.S	2010-05-17 19:46:52 UTC (rev 8716)
@@ -5,6 +5,7 @@
  */
 
 #include <linux/linkage.h>
+#include <asm/context.S>
 
 /* void *strncpy(char *dest, const char *src, size_t n);
  * R0 = address (dest)
@@ -68,7 +69,7 @@
 	R0 = RETS;
 	I0 = R0;
 	R0 = P0;
-	CALL _memset;
+	pseudo_long_call _memset, p0;
 	R0 = I0;
 	RETS = R0;
 	R0 = I1;
_______________________________________________
Linux-kernel-commits mailing list
[email protected]
https://blackfin.uclinux.org/mailman/listinfo/linux-kernel-commits

Reply via email to