Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e5480b73 authored by Russell King's avatar Russell King Committed by Russell King
Browse files

[ARM] omap: remove an io_v2p() usage



When omap_udc is also incorporated, this macro will no longer be used.

Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
parent f2eda27d
Loading
Loading
Loading
Loading
+5 −1
Original line number Original line Diff line number Diff line
@@ -119,12 +119,14 @@ struct omap2_mcspi {
	struct clk		*fck;
	struct clk		*fck;
	/* Virtual base address of the controller */
	/* Virtual base address of the controller */
	void __iomem		*base;
	void __iomem		*base;
	unsigned long		phys;
	/* SPI1 has 4 channels, while SPI2 has 2 */
	/* SPI1 has 4 channels, while SPI2 has 2 */
	struct omap2_mcspi_dma	*dma_channels;
	struct omap2_mcspi_dma	*dma_channels;
};
};


struct omap2_mcspi_cs {
struct omap2_mcspi_cs {
	void __iomem		*base;
	void __iomem		*base;
	unsigned long		phys;
	int			word_len;
	int			word_len;
};
};


@@ -233,7 +235,7 @@ omap2_mcspi_txrx_dma(struct spi_device *spi, struct spi_transfer *xfer)
	c = count;
	c = count;
	word_len = cs->word_len;
	word_len = cs->word_len;


	base = (unsigned long) io_v2p(cs->base);
	base = cs->phys;
	tx_reg = base + OMAP2_MCSPI_TX0;
	tx_reg = base + OMAP2_MCSPI_TX0;
	rx_reg = base + OMAP2_MCSPI_RX0;
	rx_reg = base + OMAP2_MCSPI_RX0;
	rx = xfer->rx_buf;
	rx = xfer->rx_buf;
@@ -633,6 +635,7 @@ static int omap2_mcspi_setup(struct spi_device *spi)
		if (!cs)
		if (!cs)
			return -ENOMEM;
			return -ENOMEM;
		cs->base = mcspi->base + spi->chip_select * 0x14;
		cs->base = mcspi->base + spi->chip_select * 0x14;
		cs->phys = mcspi->phys + spi->chip_select * 0x14;
		spi->controller_state = cs;
		spi->controller_state = cs;
	}
	}


@@ -1005,6 +1008,7 @@ static int __init omap2_mcspi_probe(struct platform_device *pdev)
		goto err1;
		goto err1;
	}
	}


	mcspi->phys = r->start;
	mcspi->base = (void __iomem *) io_p2v(r->start);
	mcspi->base = (void __iomem *) io_p2v(r->start);


	INIT_WORK(&mcspi->work, omap2_mcspi_work);
	INIT_WORK(&mcspi->work, omap2_mcspi_work);