From patchwork Wed Jun 22 14:41:26 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [v2,1/6] ARM: mxc: imx-sdma device gets 16K iosize than 4K From: Shawn Guo X-Patchwork-Id: 101488 Message-Id: <1308753691-14442-2-git-send-email-shawn.guo@linaro.org> To: Cc: Vinod Koul , Shawn Guo , kernel@pengutronix.de, patches@linaro.org Date: Wed, 22 Jun 2011 22:41:26 +0800 The sdma on all imx soc gets 16K IO space not 4K. Signed-off-by: Shawn Guo --- arch/arm/plat-mxc/devices/platform-imx-dma.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/arm/plat-mxc/devices/platform-imx-dma.c b/arch/arm/plat-mxc/devices/platform-imx-dma.c index 4e7fbc2..1c737db 100644 --- a/arch/arm/plat-mxc/devices/platform-imx-dma.c +++ b/arch/arm/plat-mxc/devices/platform-imx-dma.c @@ -62,7 +62,7 @@ static struct platform_device __init __maybe_unused *imx_add_imx_sdma( struct resource res[] = { { .start = data->iobase, - .end = data->iobase + SZ_4K - 1, + .end = data->iobase + SZ_16K - 1, .flags = IORESOURCE_MEM, }, { .start = data->irq,