diff options
author | Alexander Shiyan <shc_work@mail.ru> | 2014-04-27 20:03:26 +0400 |
---|---|---|
committer | Shawn Guo <shawn.guo@freescale.com> | 2014-05-12 22:58:50 +0800 |
commit | 08da51c5755ba241774d9c292964baea0e5609cd (patch) | |
tree | 1739e138741fbc7835a805b2c34d27ac15e1eb35 /arch/arm/mach-imx | |
parent | 71bb07c37b7db22d5973aa8cc60de296f0378676 (diff) |
ARM: i.MX: Fix eMMa PrP resource size
Last address for eMMa PrP is 0x80...0x83, so increase resource size
for eMMa to 256.
Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
Signed-off-by: Shawn Guo <shawn.guo@freescale.com>
Diffstat (limited to 'arch/arm/mach-imx')
-rw-r--r-- | arch/arm/mach-imx/devices/platform-mx2-emma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-imx/devices/platform-mx2-emma.c b/arch/arm/mach-imx/devices/platform-mx2-emma.c index 11bd01d402f..0dc0651825b 100644 --- a/arch/arm/mach-imx/devices/platform-mx2-emma.c +++ b/arch/arm/mach-imx/devices/platform-mx2-emma.c @@ -12,7 +12,7 @@ #define imx_mx2_emmaprp_data_entry_single(soc) \ { \ .iobase = soc ## _EMMAPRP_BASE_ADDR, \ - .iosize = SZ_32, \ + .iosize = SZ_256, \ .irq = soc ## _INT_EMMAPRP, \ } |