svn commit: r288952 - head/sys/dev/drm2/i915

Adrian Chadd adrian at FreeBSD.org
Tue Oct 6 20:58:47 UTC 2015


Author: adrian
Date: Tue Oct  6 20:58:45 2015
New Revision: 288952
URL: https://svnweb.freebsd.org/changeset/base/288952

Log:
  Remove gen3 check introduced in r286653.
  
  kib spotted this and noticed it's not correct.
  
  Submitted by:	kib
  Reviewed by:	dumbbell

Modified:
  head/sys/dev/drm2/i915/i915_drv.c

Modified: head/sys/dev/drm2/i915/i915_drv.c
==============================================================================
--- head/sys/dev/drm2/i915/i915_drv.c	Tue Oct  6 19:49:53 2015	(r288951)
+++ head/sys/dev/drm2/i915/i915_drv.c	Tue Oct  6 20:58:45 2015	(r288952)
@@ -894,7 +894,6 @@ int intel_gpu_reset(struct drm_device *d
 	case 4:
 		ret = i965_do_reset(dev);
 		break;
-	case 3:
 	case 2:
 		ret = i8xx_do_reset(dev);
 		break;


More information about the svn-src-all mailing list