X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs2.git;a=blobdiff_plain;f=direct%2Fyaffs_hweight.c;h=7e2c250a598138d59a904af52d94c0d02c61fa51;hp=9851683d02be1382185b94c5c7c5a99c9c74e9c9;hb=597a9ecaee1fbcad4be10382dca705522a2d5a82;hpb=d7388fb75a13610d14d0afc397f826bd44c972e1 diff --git a/direct/yaffs_hweight.c b/direct/yaffs_hweight.c index 9851683..7e2c250 100644 --- a/direct/yaffs_hweight.c +++ b/direct/yaffs_hweight.c @@ -10,10 +10,10 @@ * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */ - - /* These functions have been renamed to hweightxx to match the - * equivaqlent functions in the Linux kernel. - */ + +/* These functions have been renamed to hweightxx to match the + * equivaqlent functions in the Linux kernel. + */ #include "yaffs_hweight.h" @@ -45,7 +45,7 @@ int yaffs_hweight8(u8 x) int yaffs_hweight32(u32 x) { - return yaffs_hweight8(x & 0xff) + + return yaffs_hweight8(x & 0xff) + yaffs_hweight8((x >> 8) & 0xff) + yaffs_hweight8((x >> 16) & 0xff) + yaffs_hweight8((x >> 24) & 0xff);