From 27d4ef0964aed423e5307c354e02de0435dd6a75 Mon Sep 17 00:00:00 2001 From: Bharat Nihalani Date: Thu, 8 Oct 2015 12:08:12 +0530 Subject: [PATCH] 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 Reviewed-on: http://git-master/r/1198249 Reviewed-on: http://git-master/r/1314834 GVS: Gerrit_Virtual_Submit Reviewed-by: Aniruddha Banerjee Tested-by: Aniruddha Banerjee Reviewed-by: Timo Alho --- drivers/video/tegra/virt/tegra_gr_comm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/video/tegra/virt/tegra_gr_comm.c b/drivers/video/tegra/virt/tegra_gr_comm.c index 910f3e73..4d576e6e 100644 --- a/drivers/video/tegra/virt/tegra_gr_comm.c +++ b/drivers/video/tegra/virt/tegra_gr_comm.c @@ -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;