The patch titled mtd/maps: ixp4xx partition parsing has been added to the -mm tree. Its filename is mtd-maps-ixp4xx-partition-parsing.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: mtd/maps: ixp4xx partition parsing From: Brian Walsh <brian@xxxxxxxx> If the amount of flash is not divisible by 2 then the mask in parse_mtd_partitions would fail to work as designed. Passing in the base address corrects this problem. Signed-off-by: Brian Walsh <brian@xxxxxxxx> Cc: David Woodhouse <dwmw2@xxxxxxxxxxxxx> Cc: Deepak Sanexa <dsanexa@xxxxxxxxxx> Cc: Thomas Gleixner <tglx@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/mtd/maps/ixp4xx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/mtd/maps/ixp4xx.c~mtd-maps-ixp4xx-partition-parsing drivers/mtd/maps/ixp4xx.c --- a/drivers/mtd/maps/ixp4xx.c~mtd-maps-ixp4xx-partition-parsing +++ a/drivers/mtd/maps/ixp4xx.c @@ -253,7 +253,7 @@ static int ixp4xx_flash_probe(struct pla /* Use the fast version */ info->map.write = ixp4xx_write16, - err = parse_mtd_partitions(info->mtd, probes, &info->partitions, 0); + err = parse_mtd_partitions(info->mtd, probes, &info->partitions, dev->resource->start); if (err > 0) { err = add_mtd_partitions(info->mtd, info->partitions, err); if(err) _ Patches currently in -mm which might be from brian@xxxxxxxx are drivers-base-platform-notify-needs-to-occur.patch mtd-maps-ixp4xx-partition-parsing.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html