diff options
| author | Uwe Kleine-König <[email protected]> | 2012-03-29 19:54:18 +0000 |
|---|---|---|
| committer | Grant Likely <[email protected]> | 2012-03-30 22:46:23 +0000 |
| commit | cc4d22ae541ccd989ef163c46a38afde131e1644 (patch) | |
| tree | 0cf118ba40e541ebeffbe2aa760efca0663b6196 /drivers/spi/spi-imx.c | |
| parent | spi/mpc83xx: fix NULL pdata dereference bug (diff) | |
| download | kernel-cc4d22ae541ccd989ef163c46a38afde131e1644.tar.gz kernel-cc4d22ae541ccd989ef163c46a38afde131e1644.zip | |
spi/imx: mark base member in spi_imx_data as __iomem
This fixes 36 sparse warnings like:
drivers/spi/spi-imx.c:143:1: warning: incorrect type in argument 1 (different address spaces)
drivers/spi/spi-imx.c:143:1: expected void const volatile [noderef] <asn:2>*<noident>
drivers/spi/spi-imx.c:143:1: got void *
Signed-off-by: Uwe Kleine-König <[email protected]>
Signed-off-by: Grant Likely <[email protected]>
Diffstat (limited to 'drivers/spi/spi-imx.c')
| -rw-r--r-- | drivers/spi/spi-imx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/spi/spi-imx.c b/drivers/spi/spi-imx.c index 31054e3de4c1..373f4fff9358 100644 --- a/drivers/spi/spi-imx.c +++ b/drivers/spi/spi-imx.c @@ -83,7 +83,7 @@ struct spi_imx_data { struct spi_bitbang bitbang; struct completion xfer_done; - void *base; + void __iomem *base; int irq; struct clk *clk; unsigned long spi_clk; |
