瀏覽代碼

alpha: fix __arch_hweight32 typo

Typo in 1527bc8b928dd1399c3d3467dd47d9ede210978a renamed hweight32 to
__arch_weight32.

Signed-off-by: Matt Turner <mattst88@gmail.com>
Matt Turner 15 年之前
父節點
當前提交
87a9d57da4
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      arch/alpha/include/asm/bitops.h

+ 1 - 1
arch/alpha/include/asm/bitops.h

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