Skip to content

Commit

Permalink
alpha: fix __arch_hweight32 typo
Browse files Browse the repository at this point in the history
Typo in 1527bc8 renamed hweight32 to
__arch_weight32.

Signed-off-by: Matt Turner <mattst88@gmail.com>
  • Loading branch information
Matt Turner committed Jun 15, 2010
1 parent 7e27d6e commit 87a9d57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/alpha/include/asm/bitops.h
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ static inline unsigned long __arch_hweight64(unsigned long w)
return __kernel_ctpop(w);
}

static inline unsigned int __arch_weight32(unsigned int w)
static inline unsigned int __arch_hweight32(unsigned int w)
{
return __arch_hweight64(w);
}
Expand Down

0 comments on commit 87a9d57

Please sign in to comment.