diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2014-01-06 12:20:45 +1100 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-01-06 12:20:45 +1100 |
commit | f0a679afefc0b6288310f88606b4bb1f243f1aa9 (patch) | |
tree | fe720ec5bdeaf20ec3bd14f899d4e7290c3a3411 /drivers/mtd | |
parent | d11739e6d83dc17a6b54cfa23f8d7872d9ef82e2 (diff) | |
parent | 0a5ccc86507f45b80831dac1049197c4d45be955 (diff) | |
download | op-kernel-dev-f0a679afefc0b6288310f88606b4bb1f243f1aa9.zip op-kernel-dev-f0a679afefc0b6288310f88606b4bb1f243f1aa9.tar.gz |
Merge branch 'fixes' of git://ftp.arm.linux.org.uk/~rmk/linux-arm
Pull ARM fixes from Russell King:
"Another set of small fixes for ARM, covering various areas.
Laura fixed a long standing issue with virt_addr_valid() failing to
handle holes in memory. Steve found a problem with dcache flushing
for compound pages. I fixed another bug in footbridge stuff causing
time to tick slowly, and also a problem with the AES code which can
cause linker errors.
A patch from Rob which fixes Xen problems induced by a lack of
consistency in our naming of ioremap_cache() - which thankfully has
very few users"
* 'fixes' of git://ftp.arm.linux.org.uk/~rmk/linux-arm:
ARM: 7933/1: rename ioremap_cached to ioremap_cache
ARM: fix "bad mode in ... handler" message for undefined instructions
CRYPTO: Fix more AES build errors
ARM: 7931/1: Correct virt_addr_valid
ARM: 7923/1: mm: fix dcache flush logic for compound high pages
ARM: fix footbridge clockevent device
Diffstat (limited to 'drivers/mtd')
-rw-r--r-- | drivers/mtd/maps/pxa2xx-flash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/maps/pxa2xx-flash.c b/drivers/mtd/maps/pxa2xx-flash.c index d210d13..0f55589 100644 --- a/drivers/mtd/maps/pxa2xx-flash.c +++ b/drivers/mtd/maps/pxa2xx-flash.c @@ -73,7 +73,7 @@ static int pxa2xx_flash_probe(struct platform_device *pdev) return -ENOMEM; } info->map.cached = - ioremap_cached(info->map.phys, info->map.size); + ioremap_cache(info->map.phys, info->map.size); if (!info->map.cached) printk(KERN_WARNING "Failed to ioremap cached %s\n", info->map.name); |