Skip to content

Commit

Permalink
mtd: nand: tmio: Register partitions using the parsers
Browse files Browse the repository at this point in the history
With the introduction of sharpslpart partition parser we can now read the
offsets from NAND: we specify the list of the parsers as platform data, with
cmdlinepart and ofpart parsers first allowing to override the part. table
written in NAND. This is done in the board files using this driver.

Use now these parsers.

Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
Acked-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com>
  • Loading branch information
Andrea Adami authored and Boris Brezillon committed Aug 23, 2017
1 parent 827dba9 commit 311bba1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion drivers/mtd/nand/tmio_nand.c
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,9 @@ static int tmio_probe(struct platform_device *dev)
goto err_irq;

/* Register the partitions */
retval = mtd_device_parse_register(mtd, NULL, NULL,
retval = mtd_device_parse_register(mtd,
data ? data->part_parsers : NULL,
NULL,
data ? data->partition : NULL,
data ? data->num_partitions : 0);
if (!retval)
Expand Down

0 comments on commit 311bba1

Please sign in to comment.