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

Commit 5a9f23ff authored by Boris Brezillon's avatar Boris Brezillon Committed by Brian Norris
Browse files

mtd: nand: mpc5121: 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 0faf8c39
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -118,7 +118,6 @@
#define NFC_TIMEOUT		(HZ / 10)	/* 1/10 s */

struct mpc5121_nfc_prv {
	struct mtd_info		mtd;
	struct nand_chip	chip;
	int			irq;
	void __iomem		*regs;
@@ -654,8 +653,8 @@ static int mpc5121_nfc_probe(struct platform_device *op)
	if (!prv)
		return -ENOMEM;

	mtd = &prv->mtd;
	chip = &prv->chip;
	mtd = nand_to_mtd(chip);

	mtd->priv = chip;
	mtd->dev.parent = dev;