1
0
Fork 0

alpha: fix __arch_hweight32 typo

Typo in 1527bc8b92 renamed hweight32 to
__arch_weight32.

Signed-off-by: Matt Turner <mattst88@gmail.com>
hifive-unleashed-5.1
Matt Turner 2010-06-06 20:06:40 -04:00
parent 7e27d6e778
commit 87a9d57da4
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}