Title: [8229] trunk/arch/blackfin/kernel/ftrace-entry.S: use ftrace syntax that compiles pointed out by Yi
Revision
8229
Author
vapier
Date
2010-01-25 12:17:27 -0500 (Mon, 25 Jan 2010)

Log Message

use ftrace syntax that compiles pointed out by Yi

Modified Paths


Diff

Modified: trunk/arch/blackfin/kernel/ftrace-entry.S (8228 => 8229)


--- trunk/arch/blackfin/kernel/ftrace-entry.S	2010-01-25 06:19:54 UTC (rev 8228)
+++ trunk/arch/blackfin/kernel/ftrace-entry.S	2010-01-25 17:17:27 UTC (rev 8229)
@@ -26,8 +26,8 @@
 	p1.l = _function_trace_stop;
 	p1.h = _function_trace_stop;
 	r3 = [p1];
-	cc = r3 != 0;
-	if cc jump _ftrace_stub (bp);
+	cc = r3 == 0;
+	if ! cc jump _ftrace_stub (bp);
 #endif
 
 	/* save third function arg early so we can do testing below */
_______________________________________________
Linux-kernel-commits mailing list
[email protected]
https://blackfin.uclinux.org/mailman/listinfo/linux-kernel-commits

Reply via email to