summaryrefslogtreecommitdiff
path: root/drivers/gpu
diff options
context:
space:
mode:
authorJordan Crouse <jcrouse@codeaurora.org>2016-05-11 09:37:45 -0600
committerCarter Cooper <ccooper@codeaurora.org>2016-07-20 15:19:34 -0600
commit858b8e026414b3cdc554fdd52e2254ec7b16faeb (patch)
tree1617c9e17bf6817276a4e244bdae1fcd1795f365 /drivers/gpu
parentdd9a770d237e8525c8d486dd41002be68ff06bfb (diff)
msm: kgsl: Remove unneeded error message in kgsl_iommu.c
iommu_attach_device() should return a log message for every possible error and we don't need to double up the pain especially for situations when we run out of available domains and start getting a storm of ENOSPC errors back. CRs-Fixed: 1009158 Change-Id: Ic0dedbad7416abb23c769a4d3be9ebd0ca04810c Signed-off-by: Jordan Crouse <jcrouse@codeaurora.org>
Diffstat (limited to 'drivers/gpu')
-rw-r--r--drivers/gpu/msm/kgsl_iommu.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/gpu/msm/kgsl_iommu.c b/drivers/gpu/msm/kgsl_iommu.c
index 405cc35f8209..793c4f8b05e5 100644
--- a/drivers/gpu/msm/kgsl_iommu.c
+++ b/drivers/gpu/msm/kgsl_iommu.c
@@ -220,9 +220,6 @@ static int _attach_pt(struct kgsl_iommu_pt *iommu_pt,
if (ret == 0)
iommu_pt->attached = true;
- else
- KGSL_CORE_ERR("iommu_attach_device(%s) failed: %d\n",
- ctx->name, ret);
return ret;
}