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

Commit d9d41328 authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "msm: kgsl: Return correctly from gmu_core_dev_wait_for_lowest_idle"

parents 65738df7 d5ad8d0d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -302,7 +302,7 @@ int gmu_core_dev_wait_for_lowest_idle(struct kgsl_device *device)
	struct gmu_dev_ops *ops = GMU_DEVICE_OPS(device);

	if (ops && ops->wait_for_lowest_idle)
		ops->wait_for_lowest_idle(device);
		return ops->wait_for_lowest_idle(device);

	return 0;
}