diff options
author | Akinobu Mita <akinobu.mita@gmail.com> | 2009-11-13 02:02:22 -0500 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2009-11-30 04:53:19 -0500 |
commit | 54c69cc25064c1d333a12b5883aaa3bfa3041dee (patch) | |
tree | b35be6846d01e7cc9ac3a7aa67218b830a1f5b71 /drivers/mtd | |
parent | e670e41ae0f329487e5a5c357510c6798b0d80b4 (diff) |
mtd: alauda: Use hweight8
Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com>
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'drivers/mtd')
-rw-r--r-- | drivers/mtd/nand/alauda.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/drivers/mtd/nand/alauda.c b/drivers/mtd/nand/alauda.c index 6d9649159a18..2d6773281fd9 100644 --- a/drivers/mtd/nand/alauda.c +++ b/drivers/mtd/nand/alauda.c | |||
@@ -372,15 +372,6 @@ static int alauda_read_oob(struct mtd_info *mtd, loff_t from, void *oob) | |||
372 | return __alauda_read_page(mtd, from, ignore_buf, oob); | 372 | return __alauda_read_page(mtd, from, ignore_buf, oob); |
373 | } | 373 | } |
374 | 374 | ||
375 | static int popcount8(u8 c) | ||
376 | { | ||
377 | int ret = 0; | ||
378 | |||
379 | for ( ; c; c>>=1) | ||
380 | ret += c & 1; | ||
381 | return ret; | ||
382 | } | ||
383 | |||
384 | static int alauda_isbad(struct mtd_info *mtd, loff_t ofs) | 375 | static int alauda_isbad(struct mtd_info *mtd, loff_t ofs) |
385 | { | 376 | { |
386 | u8 oob[16]; | 377 | u8 oob[16]; |
@@ -391,7 +382,7 @@ static int alauda_isbad(struct mtd_info *mtd, loff_t ofs) | |||
391 | return err; | 382 | return err; |
392 | 383 | ||
393 | /* A block is marked bad if two or more bits are zero */ | 384 | /* A block is marked bad if two or more bits are zero */ |
394 | return popcount8(oob[5]) >= 7 ? 0 : 1; | 385 | return hweight8(oob[5]) >= 7 ? 0 : 1; |
395 | } | 386 | } |
396 | 387 | ||
397 | static int alauda_bounce_read(struct mtd_info *mtd, loff_t from, size_t len, | 388 | static int alauda_bounce_read(struct mtd_info *mtd, loff_t from, size_t len, |