Skip to content

Commit

Permalink
mtd: onenand/generic don't specify default parsing options
Browse files Browse the repository at this point in the history
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@gmail.com>
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
  • Loading branch information
Dmitry Eremin-Solenikov authored and Artem Bityutskiy committed Sep 11, 2011
1 parent abfc7d2 commit 3d4ae3b
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions drivers/mtd/onenand/generic.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@
*/
#define DRIVER_NAME "onenand-flash"

static const char *part_probes[] = { "cmdlinepart", NULL, };

struct onenand_info {
struct mtd_info mtd;
struct mtd_partition *parts;
Expand Down Expand Up @@ -73,7 +71,7 @@ static int __devinit generic_onenand_probe(struct platform_device *pdev)
goto out_iounmap;
}

err = parse_mtd_partitions(&info->mtd, part_probes, &info->parts, 0);
err = parse_mtd_partitions(&info->mtd, NULL, &info->parts, 0);
if (err > 0)
mtd_device_register(&info->mtd, info->parts, err);
else if (err <= 0 && pdata && pdata->parts)
Expand Down

0 comments on commit 3d4ae3b

Please sign in to comment.