diff options
author | Mike Frysinger <vapier@gentoo.org> | 2010-06-07 08:22:03 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2010-08-06 12:55:49 -0400 |
commit | a13265af99c8c10c61b7713d62d8d163fbf30a94 (patch) | |
tree | 3686387fb1168efc2e7987cca0a849843c8c0673 /arch | |
parent | 1ae9ab17e7c951eac55ebe40f6f19e7f2470c305 (diff) |
Blackfin: fix typo in hweight asm
Run ONES on the incoming value rather than random garbage. This fixes
random crashes with some networking code.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/blackfin/include/asm/bitops.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/blackfin/include/asm/bitops.h b/arch/blackfin/include/asm/bitops.h index 605ba8e9b2e4..d5872cd967ab 100644 --- a/arch/blackfin/include/asm/bitops.h +++ b/arch/blackfin/include/asm/bitops.h | |||
@@ -119,7 +119,7 @@ static inline unsigned int hweight32(unsigned int w) | |||
119 | { | 119 | { |
120 | unsigned int res; | 120 | unsigned int res; |
121 | 121 | ||
122 | __asm__ ("%0.l = ONES %0;" | 122 | __asm__ ("%0.l = ONES %1;" |
123 | "%0 = %0.l (Z);" | 123 | "%0 = %0.l (Z);" |
124 | : "=d" (res) : "d" (w)); | 124 | : "=d" (res) : "d" (w)); |
125 | return res; | 125 | return res; |