mtd: intel_vr_nor don't specify default parsing options
authorDmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Sun, 29 May 2011 16:16:46 +0000 (20:16 +0400)
committerArtem Bityutskiy <artem.bityutskiy@intel.com>
Sun, 11 Sep 2011 12:02:00 +0000 (15:02 +0300)
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>
drivers/mtd/maps/intel_vr_nor.c

index d2f47be8754b211392c0841fd32685396878481a..fd612c7ec1f63949d6554e47813ff8647e16603c 100644 (file)
@@ -72,11 +72,10 @@ static void __devexit vr_nor_destroy_partitions(struct vr_nor_mtd *p)
 static int __devinit vr_nor_init_partitions(struct vr_nor_mtd *p)
 {
        struct mtd_partition *parts;
-       static const char *part_probes[] = { "cmdlinepart", NULL };
 
        /* register the flash bank */
        /* partition the flash bank */
-       p->nr_parts = parse_mtd_partitions(p->info, part_probes, &parts, 0);
+       p->nr_parts = parse_mtd_partitions(p->info, NULL, &parts, 0);
        return mtd_device_register(p->info, parts, p->nr_parts);
 }
 
This page took 0.025016 seconds and 5 git commands to generate.