Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 161a3754 authored by Jordan Crouse's avatar Jordan Crouse
Browse files

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.

Change-Id: Ic0dedbad7416abb23c769a4d3be9ebd0ca04810c
Signed-off-by: default avatarJordan Crouse <jcrouse@codeaurora.org>
parent 4afea34a
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -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;
}