Commit a001058a authored by Miquel Raynal's avatar Miquel Raynal

mtd: rawnand: txx9ndfmc: rename nand controller internal structure

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: default avatarMiquel Raynal <miquel.raynal@bootlin.com>
Reviewed-by: default avatarBoris Brezillon <boris.brezillon@bootlin.com>
Signed-off-by: default avatarMiquel Raynal <miquel.raynal@bootlin.com>
parent 6a9035ce
...@@ -73,7 +73,7 @@ struct txx9ndfmc_drvdata { ...@@ -73,7 +73,7 @@ struct txx9ndfmc_drvdata {
void __iomem *base; void __iomem *base;
unsigned char hold; /* in gbusclock */ unsigned char hold; /* in gbusclock */
unsigned char spw; /* 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) static struct platform_device *mtd_to_platdev(struct mtd_info *mtd)
...@@ -303,7 +303,7 @@ static int __init txx9ndfmc_probe(struct platform_device *dev) ...@@ -303,7 +303,7 @@ static int __init txx9ndfmc_probe(struct platform_device *dev)
dev_info(&dev->dev, "CLK:%ldMHz HOLD:%d SPW:%d\n", dev_info(&dev->dev, "CLK:%ldMHz HOLD:%d SPW:%d\n",
(gbusclk + 500000) / 1000000, hold, spw); (gbusclk + 500000) / 1000000, hold, spw);
nand_controller_init(&drvdata->hw_control); nand_controller_init(&drvdata->controller);
platform_set_drvdata(dev, drvdata); platform_set_drvdata(dev, drvdata);
txx9ndfmc_initialize(dev); txx9ndfmc_initialize(dev);
...@@ -337,7 +337,7 @@ static int __init txx9ndfmc_probe(struct platform_device *dev) ...@@ -337,7 +337,7 @@ static int __init txx9ndfmc_probe(struct platform_device *dev)
chip->ecc.bytes = 3; chip->ecc.bytes = 3;
chip->ecc.strength = 1; chip->ecc.strength = 1;
chip->chip_delay = 100; chip->chip_delay = 100;
chip->controller = &drvdata->hw_control; chip->controller = &drvdata->controller;
nand_set_controller_data(chip, txx9_priv); nand_set_controller_data(chip, txx9_priv);
txx9_priv->dev = dev; txx9_priv->dev = dev;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment