[Intel-gfx] [PATCH i-g-t 3/3] lib/igt_kms: Remove check against HDMI connectors on HSW and BDW.
Marius Vlad
marius.c.vlad at intel.com
Mon Feb 8 16:26:56 UTC 2016
Signed-off-by: Marius Vlad <marius.c.vlad at intel.com>
---
lib/igt_kms.c | 10 +---------
1 file changed, 1 insertion(+), 9 deletions(-)
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index ed40c48..5c911d5 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -384,16 +384,8 @@ bool kmstest_force_connector(int drm_fd, drmModeConnector *connector,
const char *value;
int debugfs_fd, ret, len;
drmModeConnector *temp;
- uint32_t devid;
- devid = intel_get_drm_devid(drm_fd);
-
- /* forcing hdmi or dp connectors on HSW and BDW doesn't currently work,
- * so fail early to allow the test to skip if required */
- if ((connector->connector_type == DRM_MODE_CONNECTOR_HDMIA ||
- connector->connector_type == DRM_MODE_CONNECTOR_HDMIB ||
- connector->connector_type == DRM_MODE_CONNECTOR_DisplayPort)
- && (IS_HASWELL(devid) || IS_BROADWELL(devid)))
+ if (connector->connector_type == DRM_MODE_CONNECTOR_DisplayPort)
return false;
switch (state) {
--
2.7.0
More information about the Intel-gfx
mailing list