]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
UBI: Fix build problem noticed on Apollon (arm/testing repo)
authorStefan Roese <sr@denx.de>
Mon, 29 Jun 2009 11:30:50 +0000 (13:30 +0200)
committerStefan Roese <sr@denx.de>
Tue, 7 Jul 2009 14:33:44 +0000 (16:33 +0200)
This patch fixes a build problem noticed on Apollon by using
mtd_dev_by_eb() instead of "/" as done in the Linux UBI version.
So this brings the U-Boot UBI version more in sync with the Linux
version again.

Signed-off-by: Stefan Roese <sr@denx.de>
drivers/mtd/ubi/build.c

index 4f50b2db62950612d4f8ab79600d51e7c7472d86..354e80b528effcdae04ee73fe9fbcff3ce6e4a5a 100644 (file)
@@ -536,7 +536,7 @@ static int io_init(struct ubi_device *ubi)
         */
 
        ubi->peb_size   = ubi->mtd->erasesize;
-       ubi->peb_count  = ubi->mtd->size / ubi->mtd->erasesize;
+       ubi->peb_count  = mtd_div_by_eb(ubi->mtd->size, ubi->mtd);
        ubi->flash_size = ubi->mtd->size;
 
        if (ubi->mtd->block_isbad && ubi->mtd->block_markbad)