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

Commit cc4c36cd authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "msm: kgsl: Remove kzalloc failure message"

parents e2c66362 7d3ca8d5
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -535,10 +535,9 @@ kgsl_iommu_disable_clk_on_ts(struct kgsl_mmu *mmu,
	struct kgsl_iommu_disable_clk_param *param;

	param = kzalloc(sizeof(*param), GFP_KERNEL);
	if (!param) {
		KGSL_CORE_ERR("kzalloc(%d) failed\n", sizeof(*param));
	if (!param)
		return;
	}

	param->mmu = mmu;
	param->ctx_id = ctx_id;
	param->ts = ts;