]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
mtd: rawnand: fsmc: Stop using the dummy controller obj
authorBoris Brezillon <boris.brezillon@bootlin.com>
Tue, 20 Nov 2018 09:02:33 +0000 (10:02 +0100)
committerMiquel Raynal <miquel.raynal@bootlin.com>
Fri, 7 Dec 2018 09:54:44 +0000 (10:54 +0100)
The dummy controller is kept around to support old drivers. Let's
patch this one and declare our own nand_controller instance.

Signed-off-by: Boris Brezillon <boris.brezillon@bootlin.com>
Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
drivers/mtd/nand/raw/fsmc_nand.c

index 23d00a2c926f04b07d603316f8f007751d34fc20..db5174c336d419c378b18921d95e543a86db5ce1 100644 (file)
@@ -122,6 +122,7 @@ enum access_mode {
 /**
  * struct fsmc_nand_data - structure for FSMC NAND device state
  *
+ * @base:              Inherit from the nand_controller struct
  * @pid:               Part ID on the AMBA PrimeCell format
  * @nand:              Chip related info for a NAND flash.
  *
@@ -143,6 +144,7 @@ enum access_mode {
  * @regs_va:           Registers base address for a given bank.
  */
 struct fsmc_nand_data {
+       struct nand_controller  base;
        u32                     pid;
        struct nand_chip        nand;
 
@@ -1117,10 +1119,13 @@ static int __init fsmc_nand_probe(struct platform_device *pdev)
                nand->ecc.strength = 8;
        }
 
+       nand_controller_init(&host->base);
+       host->base.ops = &fsmc_nand_controller_ops;
+       nand->controller = &host->base;
+
        /*
         * Scan to find existence of the device
         */
-       nand->dummy_controller.ops = &fsmc_nand_controller_ops;
        ret = nand_scan(nand, 1);
        if (ret)
                goto release_dma_write_chan;