Commit 2ef3855a authored by Dmitry Eremin-Solenikov's avatar Dmitry Eremin-Solenikov Committed by Artem Bityutskiy

mtd: rbtx4939-flash don't specify default parsing options

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.

Artem: tweaked the patch
Signed-off-by: default avatarDmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Signed-off-by: default avatarArtem Bityutskiy <Artem.Bityutskiy@nokia.com>
parent 8d130a74
...@@ -50,7 +50,6 @@ static int rbtx4939_flash_remove(struct platform_device *dev) ...@@ -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 *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) static int rbtx4939_flash_probe(struct platform_device *dev)
{ {
...@@ -107,9 +106,7 @@ static int rbtx4939_flash_probe(struct platform_device *dev) ...@@ -107,9 +106,7 @@ static int rbtx4939_flash_probe(struct platform_device *dev)
info->mtd->owner = THIS_MODULE; info->mtd->owner = THIS_MODULE;
if (err) if (err)
goto err_out; goto err_out;
err = parse_mtd_partitions(info->mtd, NULL, &info->parts, 0);
err = parse_mtd_partitions(info->mtd, part_probe_types,
&info->parts, 0);
if (err > 0) { if (err > 0) {
mtd_device_register(info->mtd, info->parts, err); mtd_device_register(info->mtd, info->parts, err);
info->nr_parts = err; info->nr_parts = err;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment