]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
mtd: rawnand: txx9ndfmc: rename nand controller internal structure
authorMiquel Raynal <miquel.raynal@bootlin.com>
Fri, 20 Jul 2018 15:15:15 +0000 (17:15 +0200)
committerMiquel Raynal <miquel.raynal@bootlin.com>
Tue, 31 Jul 2018 07:46:03 +0000 (09:46 +0200)
As already done in the core, calling a struct nand_controller
'hw_control' is misleading. Use the same name as in nand_base.c:
'controller'.

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

index 8f5bbbac461284eb41e071557bc2bca8feddd4cc..9019022774f7e4a4984dbfc0514b23d43258f5e5 100644 (file)
@@ -73,7 +73,7 @@ struct txx9ndfmc_drvdata {
        void __iomem *base;
        unsigned char hold;     /* in gbusclock */
        unsigned char spw;      /* in gbusclock */
-       struct nand_controller hw_control;
+       struct nand_controller controller;
 };
 
 static struct platform_device *mtd_to_platdev(struct mtd_info *mtd)
@@ -303,7 +303,7 @@ static int __init txx9ndfmc_probe(struct platform_device *dev)
        dev_info(&dev->dev, "CLK:%ldMHz HOLD:%d SPW:%d\n",
                 (gbusclk + 500000) / 1000000, hold, spw);
 
-       nand_controller_init(&drvdata->hw_control);
+       nand_controller_init(&drvdata->controller);
 
        platform_set_drvdata(dev, drvdata);
        txx9ndfmc_initialize(dev);
@@ -337,7 +337,7 @@ static int __init txx9ndfmc_probe(struct platform_device *dev)
                chip->ecc.bytes = 3;
                chip->ecc.strength = 1;
                chip->chip_delay = 100;
-               chip->controller = &drvdata->hw_control;
+               chip->controller = &drvdata->controller;
 
                nand_set_controller_data(chip, txx9_priv);
                txx9_priv->dev = dev;