Title: [8898] trunk/arch/blackfin/include/asm/bitops.h: bfin: fix typo in hweight asm -- run ONES on the incoming value
Revision
8898
Author
vapier
Date
2010-06-07 08:22:03 -0400 (Mon, 07 Jun 2010)

Log Message

bfin: fix typo in hweight asm -- run ONES on the incoming value

Modified Paths


Diff

Modified: trunk/arch/blackfin/include/asm/bitops.h (8897 => 8898)


--- trunk/arch/blackfin/include/asm/bitops.h	2010-06-07 09:21:44 UTC (rev 8897)
+++ trunk/arch/blackfin/include/asm/bitops.h	2010-06-07 12:22:03 UTC (rev 8898)
@@ -209,7 +209,7 @@
 {
 	unsigned int res;
 
-	__asm__ ("%0.l = ONES %0;"
+	__asm__ ("%0.l = ONES %1;"
 		"%0 = %0.l (Z);"
 		: "=d" (res) : "d" (w));
 	return res;
_______________________________________________
Linux-kernel-commits mailing list
[email protected]
https://blackfin.uclinux.org/mailman/listinfo/linux-kernel-commits

Reply via email to