diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2010-10-13 16:35:05 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-10-13 16:35:05 -0700 |
commit | 70813196581fc636cb8a49e9bba9e04bda76206e (patch) | |
tree | 862f24526ba6ec0e7a9ebfe46100246f8a41b72a /arch | |
parent | a56f31a0c6a08faeca5f0c5e64c6a0113c43181b (diff) | |
parent | 0fa035e52373386381fcdfbd506e32eac0c662f0 (diff) | |
download | linux-70813196581fc636cb8a49e9bba9e04bda76206e.tar.bz2 |
Merge branch 'omap-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6
* 'omap-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6:
omap: iommu-load cam register before flushing the entry
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/plat-omap/iommu.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/plat-omap/iommu.c b/arch/arm/plat-omap/iommu.c index a202a2ce6e3d..6cd151b31bc5 100644 --- a/arch/arm/plat-omap/iommu.c +++ b/arch/arm/plat-omap/iommu.c @@ -320,6 +320,7 @@ void flush_iotlb_page(struct iommu *obj, u32 da) if ((start <= da) && (da < start + bytes)) { dev_dbg(obj->dev, "%s: %08x<=%08x(%x)\n", __func__, start, da, bytes); + iotlb_load_cr(obj, &cr); iommu_write_reg(obj, 1, MMU_FLUSH_ENTRY); } } |