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

Baptiste Daroussin bapt at FreeBSD.org
Sat Aug 29 00:05:40 UTC 2015


Author: bapt
Date: Sat Aug 29 00:05:39 2015
New Revision: 287268
URL: https://svnweb.freebsd.org/changeset/base/287268

Log:
  Mark ValleyView/Bay Trail as not supported

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	Fri Aug 28 22:42:37 2015	(r287267)
+++ head/sys/dev/drm2/i915/i915_drv.c	Sat Aug 29 00:05:39 2015	(r287268)
@@ -193,6 +193,7 @@ static const struct intel_device_info in
 	.has_bsd_ring = 1,
 	.has_blt_ring = 1,
 	.is_valleyview = 1,
+	.not_supported = 1,
 };
 
 static const struct intel_device_info intel_valleyview_d_info = {
@@ -202,6 +203,7 @@ static const struct intel_device_info in
 	.has_bsd_ring = 1,
 	.has_blt_ring = 1,
 	.is_valleyview = 1,
+	.not_supported = 1,
 };
 
 static const struct intel_device_info intel_haswell_d_info = {


More information about the svn-src-all mailing list