Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 87a9d57d authored by Matt Turner's avatar Matt Turner
Browse files

alpha: fix __arch_hweight32 typo



Typo in 1527bc8b renamed hweight32 to
__arch_weight32.

Signed-off-by: default avatarMatt Turner <mattst88@gmail.com>
parent 7e27d6e7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);
}