mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-15 08:44:14 +08:00
mtd: samsung/onenand 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. Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
This commit is contained in:
parent
70f438c616
commit
18f8eb1b23
@ -157,8 +157,6 @@ struct s3c_onenand {
|
||||
|
||||
static struct s3c_onenand *onenand;
|
||||
|
||||
static const char *part_probes[] = { "cmdlinepart", NULL, };
|
||||
|
||||
static inline int s3c_read_reg(int offset)
|
||||
{
|
||||
return readl(onenand->base + offset);
|
||||
@ -1017,7 +1015,7 @@ static int s3c_onenand_probe(struct platform_device *pdev)
|
||||
if (s3c_read_reg(MEM_CFG_OFFSET) & ONENAND_SYS_CFG1_SYNC_READ)
|
||||
dev_info(&onenand->pdev->dev, "OneNAND Sync. Burst Read enabled\n");
|
||||
|
||||
err = parse_mtd_partitions(mtd, part_probes, &onenand->parts, 0);
|
||||
err = parse_mtd_partitions(mtd, NULL, &onenand->parts, 0);
|
||||
if (err > 0)
|
||||
mtd_device_register(mtd, onenand->parts, err);
|
||||
else if (err <= 0 && pdata && pdata->parts)
|
||||
|
Loading…
Reference in New Issue
Block a user