diff options
author | Andrea Adami <andrea.adami@gmail.com> | 2017-08-14 22:48:35 +0200 |
---|---|---|
committer | Boris Brezillon <boris.brezillon@free-electrons.com> | 2017-08-23 16:49:32 +0200 |
commit | 482ead931e05b4d5556a5ffd51c2f40cd586f20c (patch) | |
tree | 52f413fee0aaa5c0e5c82042bf8caa9fe36fbe51 /drivers/mtd | |
parent | e59ad6ff83b444517067046bd837595a1ab84900 (diff) | |
download | talos-op-linux-482ead931e05b4d5556a5ffd51c2f40cd586f20c.tar.gz talos-op-linux-482ead931e05b4d5556a5ffd51c2f40cd586f20c.zip |
mtd: nand: sharpsl: 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: Andrea Adami <andrea.adami@gmail.com>
Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com>
Diffstat (limited to 'drivers/mtd')
-rw-r--r-- | drivers/mtd/nand/sharpsl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/nand/sharpsl.c b/drivers/mtd/nand/sharpsl.c index 064ca1757589..9859546a9207 100644 --- a/drivers/mtd/nand/sharpsl.c +++ b/drivers/mtd/nand/sharpsl.c @@ -183,7 +183,7 @@ static int sharpsl_nand_probe(struct platform_device *pdev) /* Register the partitions */ mtd->name = "sharpsl-nand"; - err = mtd_device_parse_register(mtd, NULL, NULL, + err = mtd_device_parse_register(mtd, data->part_parsers, NULL, data->partitions, data->nr_partitions); if (err) goto err_add; |