mtd: nand: diskonchip: use the mtd instance embedded in struct nand_chip
authorBoris BREZILLON <boris.brezillon@free-electrons.com>
Thu, 10 Dec 2015 08:00:00 +0000 (09:00 +0100)
committerBrian Norris <computersforpeace@gmail.com>
Fri, 18 Dec 2015 18:54:41 +0000 (10:54 -0800)
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>
drivers/mtd/nand/diskonchip.c

index 5f7bcc8..fff7a4a 100644 (file)
@@ -1556,15 +1556,15 @@ static int __init doc_probe(unsigned long physadr)
 
        printk(KERN_NOTICE "DiskOnChip found at 0x%lx\n", physadr);
 
-       len = sizeof(struct mtd_info) +
-           sizeof(struct nand_chip) + sizeof(struct doc_priv) + (2 * sizeof(struct nand_bbt_descr));
-       mtd = kzalloc(len, GFP_KERNEL);
-       if (!mtd) {
+       len = sizeof(struct nand_chip) + sizeof(struct doc_priv) +
+             (2 * sizeof(struct nand_bbt_descr));
+       nand = kzalloc(len, GFP_KERNEL);
+       if (!nand) {
                ret = -ENOMEM;
                goto fail;
        }
 
-       nand                    = (struct nand_chip *) (mtd + 1);
+       mtd                     = nand_to_mtd(nand);
        doc                     = (struct doc_priv *) (nand + 1);
        nand->bbt_td            = (struct nand_bbt_descr *) (doc + 1);
        nand->bbt_md            = nand->bbt_td + 1;
@@ -1615,7 +1615,7 @@ static int __init doc_probe(unsigned long physadr)
                   haven't yet added it.  This is handled without incident by
                   mtd_device_unregister, as far as I can tell. */
                nand_release(mtd);
-               kfree(mtd);
+               kfree(nand);
                goto fail;
        }
 
@@ -1650,7 +1650,7 @@ static void release_nanddoc(void)
                nand_release(mtd);
                iounmap(doc->virtadr);
                release_mem_region(doc->physadr, DOC_IOREMAP_LEN);
-               kfree(mtd);
+               kfree(nand);
        }
 }