Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 311bba10 authored by Andrea Adami's avatar Andrea Adami Committed by Boris Brezillon
Browse files

mtd: nand: tmio: Register partitions using the parsers



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: default avatarAndrea Adami <andrea.adami@gmail.com>
Acked-by: default avatarWolfram Sang <wsa+renesas@sang-engineering.com>
Signed-off-by: default avatarBoris Brezillon <boris.brezillon@free-electrons.com>
parent 827dba9d
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -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)