[PATCH 39/47] mtd: nand: stm_nand_bch: parse partitions and register an MTD device

From: Lee Jones
Date: Thu May 01 2014 - 05:59:41 EST


Issue the core parse partitions and register as MTD device call.

Signed-off-by: Lee Jones <lee.jones@xxxxxxxxxx>
---
drivers/mtd/nand/stm_nand_bch.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/drivers/mtd/nand/stm_nand_bch.c b/drivers/mtd/nand/stm_nand_bch.c
index 6aaa118..0f96f75 100644
--- a/drivers/mtd/nand/stm_nand_bch.c
+++ b/drivers/mtd/nand/stm_nand_bch.c
@@ -1924,6 +1924,7 @@ static void *stm_bch_dt_get_pdata(struct platform_device *pdev)

static int stm_nand_bch_probe(struct platform_device *pdev)
{
+ const char *part_probes[] = { "cmdlinepart", "ofpart", NULL, };
struct stm_plat_nand_bch_data *pdata = pdev->dev.platform_data;
struct device_node *np = pdev->dev.of_node;
struct mtd_part_parser_data ppdata;
@@ -2045,7 +2046,9 @@ static int stm_nand_bch_probe(struct platform_device *pdev)

nandi_dump_bad_blocks(nandi);

- return 0;
+ /* Add partitions */
+ return mtd_device_parse_register(mtd, part_probes, &ppdata,
+ bank->partitions, bank->nr_partitions);
}

static int stm_nand_bch_remove(struct platform_device *pdev)
--
1.8.3.2

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/