From: Matt Turner Date: Mon, 7 Jun 2010 00:06:40 +0000 (-0400) Subject: alpha: fix __arch_hweight32 typo X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=87a9d57da41e70dc85adf23e158308527c051b3a;p=GitHub%2FLineageOS%2Fandroid_kernel_samsung_universal7580.git alpha: fix __arch_hweight32 typo Typo in 1527bc8b928dd1399c3d3467dd47d9ede210978a renamed hweight32 to __arch_weight32. Signed-off-by: Matt Turner --- diff --git a/arch/alpha/include/asm/bitops.h b/arch/alpha/include/asm/bitops.h index 1dce24bc455..adfab8a21df 100644 --- a/arch/alpha/include/asm/bitops.h +++ b/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); }