mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-28 09:31:14 +00:00
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: Boris Brezillon <boris.brezillon@free-electrons.com> Signed-off-by: Brian Norris <computersforpeace@gmail.com>
This commit is contained in:
parent
0faf8c39c0
commit
5a9f23ffb6
1 changed files with 1 additions and 2 deletions
|
@ -118,7 +118,6 @@
|
||||||
#define NFC_TIMEOUT (HZ / 10) /* 1/10 s */
|
#define NFC_TIMEOUT (HZ / 10) /* 1/10 s */
|
||||||
|
|
||||||
struct mpc5121_nfc_prv {
|
struct mpc5121_nfc_prv {
|
||||||
struct mtd_info mtd;
|
|
||||||
struct nand_chip chip;
|
struct nand_chip chip;
|
||||||
int irq;
|
int irq;
|
||||||
void __iomem *regs;
|
void __iomem *regs;
|
||||||
|
@ -654,8 +653,8 @@ static int mpc5121_nfc_probe(struct platform_device *op)
|
||||||
if (!prv)
|
if (!prv)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
mtd = &prv->mtd;
|
|
||||||
chip = &prv->chip;
|
chip = &prv->chip;
|
||||||
|
mtd = nand_to_mtd(chip);
|
||||||
|
|
||||||
mtd->priv = chip;
|
mtd->priv = chip;
|
||||||
mtd->dev.parent = dev;
|
mtd->dev.parent = dev;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue