summaryrefslogtreecommitdiff
path: root/drivers/mtd/nand/raw/sh_flctl.c
diff options
context:
space:
mode:
authorBoris Brezillon <boris.brezillon@bootlin.com>2018-11-20 10:02:39 +0100
committerMiquel Raynal <miquel.raynal@bootlin.com>2018-12-07 10:58:11 +0100
commit7b6a9b28ecf2fd2e2f5dcdb6d4fa8044b48bdb74 (patch)
treecc0ab7a04ae28e4afa7deae3832448f393a9d937 /drivers/mtd/nand/raw/sh_flctl.c
parent419e5b84a4be6c796e421b82e9673e2fa1ec1b07 (diff)
downloadlwn-7b6a9b28ecf2fd2e2f5dcdb6d4fa8044b48bdb74.tar.gz
lwn-7b6a9b28ecf2fd2e2f5dcdb6d4fa8044b48bdb74.zip
mtd: rawnand: Deprecate the dummy_controller field
We try to force NAND controller drivers to properly separate the NAND controller object from the NAND chip one, so let's deprecate the dummy controller object embedded in nand_chip to encourage them to create their own instance. Signed-off-by: Boris Brezillon <boris.brezillon@bootlin.com> Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
Diffstat (limited to 'drivers/mtd/nand/raw/sh_flctl.c')
-rw-r--r--drivers/mtd/nand/raw/sh_flctl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/nand/raw/sh_flctl.c b/drivers/mtd/nand/raw/sh_flctl.c
index 7ab50bc6ad3a..cf6b1be1cf9c 100644
--- a/drivers/mtd/nand/raw/sh_flctl.c
+++ b/drivers/mtd/nand/raw/sh_flctl.c
@@ -1183,7 +1183,7 @@ static int flctl_probe(struct platform_device *pdev)
flctl_setup_dma(flctl);
- nand->dummy_controller.ops = &flctl_nand_controller_ops;
+ nand->legacy.dummy_controller.ops = &flctl_nand_controller_ops;
ret = nand_scan(nand, 1);
if (ret)
goto err_chip;