i965: Drop unnecessary I915_PARAM_HAS_EXEC_CAPTURE defines

These were only here to keep building without needing to update libdrm.
Now that we include i915_drm.h in Mesa, we don't need this - our copy
is new enough and has the #define.

Trivial.
This commit is contained in:
Kenneth Graunke 2017-08-03 01:26:03 -07:00
parent 06ab6ce612
commit 6d8af9fd50

View file

@ -2263,9 +2263,6 @@ __DRIconfig **intelInitScreen2(__DRIscreen *dri_screen)
}
/* Kernel 4.13 retuired for exec object capture */
#ifndef I915_PARAM_HAS_EXEC_CAPTURE
#define I915_PARAM_HAS_EXEC_CAPTURE 45
#endif
if (intel_get_boolean(screen, I915_PARAM_HAS_EXEC_CAPTURE)) {
screen->kernel_features |= KERNEL_ALLOWS_EXEC_CAPTURE;
}