mtd: lantiq-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: tewaked the patch Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
This commit is contained in:
parent
bef06150b2
commit
0455dfd4c8
@ -107,8 +107,6 @@ ltq_copy_to(struct map_info *map, unsigned long to,
|
|||||||
spin_unlock_irqrestore(&ebu_lock, flags);
|
spin_unlock_irqrestore(&ebu_lock, flags);
|
||||||
}
|
}
|
||||||
|
|
||||||
static const char const *part_probe_types[] = { "cmdlinepart", NULL };
|
|
||||||
|
|
||||||
static int __init
|
static int __init
|
||||||
ltq_mtd_probe(struct platform_device *pdev)
|
ltq_mtd_probe(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
@ -172,8 +170,7 @@ ltq_mtd_probe(struct platform_device *pdev)
|
|||||||
cfi->addr_unlock1 ^= 1;
|
cfi->addr_unlock1 ^= 1;
|
||||||
cfi->addr_unlock2 ^= 1;
|
cfi->addr_unlock2 ^= 1;
|
||||||
|
|
||||||
nr_parts = parse_mtd_partitions(ltq_mtd->mtd,
|
nr_parts = parse_mtd_partitions(ltq_mtd->mtd, NULL, &parts, 0);
|
||||||
part_probe_types, &parts, 0);
|
|
||||||
if (nr_parts > 0) {
|
if (nr_parts > 0) {
|
||||||
dev_info(&pdev->dev,
|
dev_info(&pdev->dev,
|
||||||
"using %d partitions from cmdline", nr_parts);
|
"using %d partitions from cmdline", nr_parts);
|
||||||
|
Loading…
Reference in New Issue
Block a user