]> git.karo-electronics.de Git - mv-sheeva.git/commitdiff
mtd: nand: use ALIGN where possible
authorSebastian Andrzej Siewior <bigeasy@linutronix.de>
Wed, 29 Sep 2010 17:43:50 +0000 (19:43 +0200)
committerDavid Woodhouse <David.Woodhouse@intel.com>
Sun, 24 Oct 2010 23:52:50 +0000 (00:52 +0100)
Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
drivers/mtd/nand/nand_bbt.c

index 5fedf4a74f16ca45bfc0c628ca03ae8dc60d53e4..a2a4e179a3556707ceb299f809f90b953c5b9943 100644 (file)
@@ -737,8 +737,7 @@ static int write_bbt(struct mtd_info *mtd, uint8_t *buf,
                        /* Calc length */
                        len = (size_t) (numblocks >> sft);
                        /* Make it page aligned ! */
-                       len = (len + (mtd->writesize - 1)) &
-                               ~(mtd->writesize - 1);
+                       len = ALIGN(len, mtd->writesize);
                        /* Preset the buffer with 0xff */
                        memset(buf, 0xff, len +
                               (len >> this->page_shift)* mtd->oobsize);