]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
mtd: nand: tmio: Register partitions using the parsers
authorAndrea Adami <andrea.adami@gmail.com>
Mon, 14 Aug 2017 20:48:36 +0000 (22:48 +0200)
committerBoris Brezillon <boris.brezillon@free-electrons.com>
Wed, 23 Aug 2017 14:49:33 +0000 (16:49 +0200)
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>
drivers/mtd/nand/tmio_nand.c

index fc5e773f8b6015955bed0737116cbf532a299ecb..47f439fb6ae33f5f073fdf3500a3da6fabb1b179 100644 (file)
@@ -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)