mirror of
https://github.com/torvalds/linux.git
synced 2024-11-28 23:21:31 +00:00
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);
|
||||
}
|
||||
|
||||
static const char const *part_probe_types[] = { "cmdlinepart", NULL };
|
||||
|
||||
static int __init
|
||||
ltq_mtd_probe(struct platform_device *pdev)
|
||||
{
|
||||
@ -172,8 +170,7 @@ ltq_mtd_probe(struct platform_device *pdev)
|
||||
cfi->addr_unlock1 ^= 1;
|
||||
cfi->addr_unlock2 ^= 1;
|
||||
|
||||
nr_parts = parse_mtd_partitions(ltq_mtd->mtd,
|
||||
part_probe_types, &parts, 0);
|
||||
nr_parts = parse_mtd_partitions(ltq_mtd->mtd, NULL, &parts, 0);
|
||||
if (nr_parts > 0) {
|
||||
dev_info(&pdev->dev,
|
||||
"using %d partitions from cmdline", nr_parts);
|
||||
|
Loading…
Reference in New Issue
Block a user