video: tegra: virt: fix typo

replace ioremap_cached to ioremap_cache. This should fix the build
break seen due to this symbol.

Change-Id: I574b568493f278aef2afb9c0704ae55b8c60affd
Signed-off-by: Bharat Nihalani <bnihalani@nvidia.com>
Reviewed-on: http://git-master/r/1198249
Reviewed-on: http://git-master/r/1314834
GVS: Gerrit_Virtual_Submit
Reviewed-by: Aniruddha Banerjee <aniruddhab@nvidia.com>
Tested-by: Aniruddha Banerjee <aniruddhab@nvidia.com>
Reviewed-by: Timo Alho <talho@nvidia.com>
This commit is contained in:
Bharat Nihalani
2015-10-08 12:08:12 +05:30
committed by Laxman Dewangan
parent e33f9d13f4
commit 27d4ef0964

View File

@@ -245,7 +245,7 @@ static int setup_mempool(u32 virt_ctx, struct platform_device *pdev,
}
queue->mempool_ctx = ctx;
ctx->ptr = ioremap_cached(ctx->cookie->ipa,
ctx->ptr = ioremap_cache(ctx->cookie->ipa,
ctx->cookie->size);
if (!ctx->ptr) {
ret = -ENOMEM;