The patch titled mtd/physmap: use parse_mtd() has been removed from the -mm tree. Its filename was mtd-physmap-use-parse_mtd.patch This patch was dropped because an updated version will be merged The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: mtd/physmap: use parse_mtd() From: Mike Frysinger <vapier@xxxxxxxxxx> Call parse_mtd() to handle partition/device registration rather than doing it all ourself. Signed-off-by: Mike Frysinger <vapier@xxxxxxxxxx> Cc: Atsushi Nemoto <anemo@xxxxxxxxxxxxx> Cc: David Woodhouse <dwmw2@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/mtd/maps/physmap.c | 23 ++--------------------- 1 file changed, 2 insertions(+), 21 deletions(-) diff -puN drivers/mtd/maps/physmap.c~mtd-physmap-use-parse_mtd drivers/mtd/maps/physmap.c --- a/drivers/mtd/maps/physmap.c~mtd-physmap-use-parse_mtd +++ a/drivers/mtd/maps/physmap.c @@ -79,9 +79,6 @@ static int physmap_flash_remove(struct p } static const char *rom_probe_types[] = { "cfi_probe", "jedec_probe", "map_rom", NULL }; -#ifdef CONFIG_MTD_PARTITIONS -static const char *part_probe_types[] = { "cmdlinepart", "RedBoot", NULL }; -#endif static int physmap_flash_probe(struct platform_device *dev) { @@ -171,24 +168,8 @@ static int physmap_flash_probe(struct pl if (err) goto err_out; -#ifdef CONFIG_MTD_PARTITIONS - err = parse_mtd_partitions(info->cmtd, part_probe_types, &parts, 0); - if (err > 0) { - add_mtd_partitions(info->cmtd, parts, err); - kfree(parts); - return 0; - } - - if (physmap_data->nr_parts) { - printk(KERN_NOTICE "Using physmap partition information\n"); - add_mtd_partitions(info->cmtd, physmap_data->parts, - physmap_data->nr_parts); - return 0; - } -#endif - - add_mtd_device(info->cmtd); - return 0; + return parse_mtd(info->cmtd, NULL, physmap_data->parts, + physmap_data->nr_parts); err_out: physmap_flash_remove(dev); _ Patches currently in -mm which might be from vapier@xxxxxxxxxx are origin.patch linux-next.patch linux-timexh-cleanup-for-userspace.patch m25p80-fix-detection-of-spi-parts.patch m25p80-fix-detection-of-m25p16-flashes.patch mtd-physmap-use-parse_mtd.patch mtd-bfin-async-flash-use-parse_mtd.patch linux-serialh-touchup-for-userspace.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