summaryrefslogtreecommitdiff
path: root/drivers/video/tegra/nvmap
diff options
context:
space:
mode:
authorRebecca Schultz Zavin <rebecca@android.com>2010-10-19 15:57:40 -0700
committerRebecca Schultz Zavin <rebecca@android.com>2010-10-20 14:19:25 -0700
commit424e17f5a2312184ae5c41e6fbbd674a82073b2d (patch)
tree5d0655b645579b12c9dcd22653013b554af20c15 /drivers/video/tegra/nvmap
parent1e7893b76b0774e7b94995dbfea40212f9780f8c (diff)
video: tegra: nvmap: Remove warning from nvmap_pin
The framebuffer driver needs to be able to arbitrarily pin whatever gets handed to it. Regardless of the interface used, functions need to unpin as soon as they finish using the gart anyway. Change-Id: Ida8aea2fb6eaca8bcbf3ae72f8dfa849dc198542 Signed-off-by: Rebecca Schultz Zavin <rebecca@android.com>
Diffstat (limited to 'drivers/video/tegra/nvmap')
-rw-r--r--drivers/video/tegra/nvmap/nvmap.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/drivers/video/tegra/nvmap/nvmap.c b/drivers/video/tegra/nvmap/nvmap.c
index 865681f2e221..3cf3935e53fb 100644
--- a/drivers/video/tegra/nvmap/nvmap.c
+++ b/drivers/video/tegra/nvmap/nvmap.c
@@ -543,14 +543,6 @@ unsigned long nvmap_pin(struct nvmap_client *client,
atomic_inc(&ref->pin);
-#ifdef CONFIG_NVMAP_RECLAIM_UNPINNED_VM
- /* if IOVMM reclaiming is enabled, IOVMM-backed allocations should
- * only be pinned through the nvmap_pin_array mechanism, since that
- * interface guarantees that handles are unpinned when the pinning
- * command buffers have completed. */
- WARN_ON(h->heap_pgalloc && !h->pgalloc.contig);
-#endif
-
if (WARN_ON(mutex_lock_interruptible(&client->share->pin_lock))) {
ret = -EINTR;
} else {