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

Commit b9201c14 authored by Eric Anholt's avatar Eric Anholt
Browse files

drm/i915: Disable the hangcheck reset on Sandybridge until we add support.



Signed-off-by: default avatarEric Anholt <eric@anholt.net>
parent a13e4093
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -1240,6 +1240,10 @@ void i915_hangcheck_elapsed(unsigned long data)
	drm_i915_private_t *dev_priv = dev->dev_private;
	uint32_t acthd;

	/* No reset support on this chip yet. */
	if (IS_GEN6(dev))
		return;

	if (!IS_I965G(dev))
		acthd = I915_READ(ACTHD);
	else