mtd: rawnand: ams-delta: Stop using legacy .IOADDR_R/W
authorJanusz Krzysztofik <jmkrzyszt@gmail.com>
Mon, 15 Oct 2018 19:41:29 +0000 (21:41 +0200)
committerMiquel Raynal <miquel.raynal@bootlin.com>
Mon, 5 Nov 2018 09:57:02 +0000 (10:57 +0100)
Replace use of legacy .IOADDR_R/W with runtime calculations based on
priv->io_base.

Suggested-by: Boris Brezillon <boris.brezillon@bootlin.com>
Signed-off-by: Janusz Krzysztofik <jmkrzyszt@gmail.com>
Reviewed-by: Boris Brezillon <boris.brezillon@bootlin.com>
Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
drivers/mtd/nand/raw/ams-delta.c

index 5ba180a291eb2986004b76af286e9582146e2d62..46193db6d368bcfb234aa3d7bdeac4e7f963a958 100644 (file)
@@ -75,7 +75,7 @@ static const struct mtd_partition partition_info[] = {
 
 static void ams_delta_io_write(struct ams_delta_nand *priv, u_char byte)
 {
-       writew(byte, priv->nand_chip.legacy.IO_ADDR_W);
+       writew(byte, priv->io_base + OMAP_MPUIO_OUTPUT);
        gpiod_set_value(priv->gpiod_nwe, 0);
        ndelay(40);
        gpiod_set_value(priv->gpiod_nwe, 1);
@@ -87,7 +87,7 @@ static u_char ams_delta_io_read(struct ams_delta_nand *priv)
 
        gpiod_set_value(priv->gpiod_nre, 0);
        ndelay(40);
-       res = readw(priv->nand_chip.legacy.IO_ADDR_R);
+       res = readw(priv->io_base + OMAP_MPUIO_INPUT_LATCH);
        gpiod_set_value(priv->gpiod_nre, 1);
 
        return res;
@@ -211,8 +211,6 @@ static int ams_delta_init(struct platform_device *pdev)
        nand_set_controller_data(this, priv);
 
        /* Set address of NAND IO lines */
-       this->legacy.IO_ADDR_R = io_base + OMAP_MPUIO_INPUT_LATCH;
-       this->legacy.IO_ADDR_W = io_base + OMAP_MPUIO_OUTPUT;
        this->legacy.read_byte = ams_delta_read_byte;
        this->legacy.write_buf = ams_delta_write_buf;
        this->legacy.read_buf = ams_delta_read_buf;