[PATCH 06/32] mtd: rbtx4939-flash don't specify default parsing options
Dmitry Eremin-Solenikov
dbaryshkov at gmail.com
Mon Jun 6 05:15:56 EDT 2011
Since 'cmdline, NULL' is now a default for parse_mtd_partitions, don't specify
this in every driver, instead pass NULL to force parse_mtd_partitions
to use default.
Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov at gmail.com>
---
drivers/mtd/maps/rbtx4939-flash.c | 4 +---
1 files changed, 1 insertions(+), 3 deletions(-)
diff --git a/drivers/mtd/maps/rbtx4939-flash.c b/drivers/mtd/maps/rbtx4939-flash.c
index 761fb45..a272678 100644
--- a/drivers/mtd/maps/rbtx4939-flash.c
+++ b/drivers/mtd/maps/rbtx4939-flash.c
@@ -50,7 +50,6 @@ static int rbtx4939_flash_remove(struct platform_device *dev)
}
static const char *rom_probe_types[] = { "cfi_probe", "jedec_probe", NULL };
-static const char *part_probe_types[] = { "cmdlinepart", NULL };
static int rbtx4939_flash_probe(struct platform_device *dev)
{
@@ -107,8 +106,7 @@ static int rbtx4939_flash_probe(struct platform_device *dev)
info->mtd->owner = THIS_MODULE;
if (err)
goto err_out;
-
- err = parse_mtd_partitions(info->mtd, part_probe_types,
+ err = parse_mtd_partitions(info->mtd, NULL,
&info->parts, 0);
if (err > 0) {
mtd_device_register(info->mtd, info->parts, err);
--
1.7.4.4
More information about the linux-mtd
mailing list