projects
/
GitHub
/
exynos8895
/
android_kernel_samsung_universal8895.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7e27d6e
)
alpha: fix __arch_hweight32 typo
author
Matt Turner
<mattst88@gmail.com>
Mon, 7 Jun 2010 00:06:40 +0000
(20:06 -0400)
committer
Matt Turner
<mattst88@gmail.com>
Tue, 15 Jun 2010 18:19:07 +0000
(14:19 -0400)
Typo in
1527bc8b928dd1399c3d3467dd47d9ede210978a
renamed hweight32 to
__arch_weight32.
Signed-off-by: Matt Turner <mattst88@gmail.com>
arch/alpha/include/asm/bitops.h
patch
|
blob
|
blame
|
history
diff --git
a/arch/alpha/include/asm/bitops.h
b/arch/alpha/include/asm/bitops.h
index 1dce24bc455a7ff9a13495517c53743a142cd49d..adfab8a21dfe95714700580a58795da1f6f5d634 100644
(file)
--- 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_
h
weight32(unsigned int w)
{
return __arch_hweight64(w);
}