]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
ARM: mxc: imx-sdma device gets 16K iosize than 4K
authorShawn Guo <shawn.guo@linaro.org>
Wed, 22 Jun 2011 14:41:26 +0000 (22:41 +0800)
committerSascha Hauer <s.hauer@pengutronix.de>
Thu, 7 Jul 2011 07:07:34 +0000 (09:07 +0200)
The sdma on all imx soc gets 16K IO space not 4K.

Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
arch/arm/plat-mxc/devices/platform-imx-dma.c

index b130f60ca6b73e9b7b8435dcc52633bb1761078c..222e439aa7fff35258d74c880779e748d1d9eac5 100644 (file)
@@ -57,7 +57,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,