Commit ca921b53 authored by Boris BREZILLON's avatar Boris BREZILLON Committed by Brian Norris

mtd: nand: ndfc: use the mtd instance embedded in struct nand_chip

struct nand_chip now embeds an mtd device. Make use of this mtd instance.
Signed-off-by: default avatarBoris Brezillon <boris.brezillon@free-electrons.com>
Signed-off-by: default avatarBrian Norris <computersforpeace@gmail.com>
parent ed10f165
...@@ -37,7 +37,6 @@ ...@@ -37,7 +37,6 @@
struct ndfc_controller { struct ndfc_controller {
struct platform_device *ofdev; struct platform_device *ofdev;
void __iomem *ndfcbase; void __iomem *ndfcbase;
struct mtd_info mtd;
struct nand_chip chip; struct nand_chip chip;
int chip_select; int chip_select;
struct nand_hw_control ndfc_control; struct nand_hw_control ndfc_control;
...@@ -147,6 +146,7 @@ static int ndfc_chip_init(struct ndfc_controller *ndfc, ...@@ -147,6 +146,7 @@ static int ndfc_chip_init(struct ndfc_controller *ndfc,
{ {
struct device_node *flash_np; struct device_node *flash_np;
struct nand_chip *chip = &ndfc->chip; struct nand_chip *chip = &ndfc->chip;
struct mtd_info *mtd = nand_to_mtd(chip);
int ret; int ret;
chip->IO_ADDR_R = ndfc->ndfcbase + NDFC_DATA; chip->IO_ADDR_R = ndfc->ndfcbase + NDFC_DATA;
...@@ -167,31 +167,32 @@ static int ndfc_chip_init(struct ndfc_controller *ndfc, ...@@ -167,31 +167,32 @@ static int ndfc_chip_init(struct ndfc_controller *ndfc,
chip->ecc.strength = 1; chip->ecc.strength = 1;
chip->priv = ndfc; chip->priv = ndfc;
ndfc->mtd.priv = chip; mtd->priv = chip;
ndfc->mtd.dev.parent = &ndfc->ofdev->dev; mtd->dev.parent = &ndfc->ofdev->dev;
flash_np = of_get_next_child(node, NULL); flash_np = of_get_next_child(node, NULL);
if (!flash_np) if (!flash_np)
return -ENODEV; return -ENODEV;
nand_set_flash_node(chip, flash_np); nand_set_flash_node(chip, flash_np);
ndfc->mtd.name = kasprintf(GFP_KERNEL, "%s.%s", ppdata.of_node = flash_np;
dev_name(&ndfc->ofdev->dev), flash_np->name); mtd->name = kasprintf(GFP_KERNEL, "%s.%s", dev_name(&ndfc->ofdev->dev),
if (!ndfc->mtd.name) { flash_np->name);
if (!mtd->name) {
ret = -ENOMEM; ret = -ENOMEM;
goto err; goto err;
} }
ret = nand_scan(&ndfc->mtd, 1); ret = nand_scan(mtd, 1);
if (ret) if (ret)
goto err; goto err;
ret = mtd_device_register(&ndfc->mtd, NULL, 0); ret = mtd_device_register(mtd, NULL, 0);
err: err:
of_node_put(flash_np); of_node_put(flash_np);
if (ret) if (ret)
kfree(ndfc->mtd.name); kfree(mtd->name);
return ret; return ret;
} }
...@@ -258,9 +259,10 @@ static int ndfc_probe(struct platform_device *ofdev) ...@@ -258,9 +259,10 @@ static int ndfc_probe(struct platform_device *ofdev)
static int ndfc_remove(struct platform_device *ofdev) static int ndfc_remove(struct platform_device *ofdev)
{ {
struct ndfc_controller *ndfc = dev_get_drvdata(&ofdev->dev); struct ndfc_controller *ndfc = dev_get_drvdata(&ofdev->dev);
struct mtd_info *mtd = nand_to_mtd(&ndfc->chip);
nand_release(&ndfc->mtd); nand_release(mtd);
kfree(ndfc->mtd.name); kfree(mtd->name);
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment