From: Eric Anholt Date: Wed, 9 Mar 2011 20:54:14 +0000 (-0800) Subject: intel: Don't complain when getparam fails due to a missing param. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f6ca4a304bf920ea6913b08638fb8eb3e020d446;p=mesa.git intel: Don't complain when getparam fails due to a missing param. This is an expected behavior when we're testing for the presence of new kernel features. --- diff --git a/src/mesa/drivers/dri/intel/intel_screen.c b/src/mesa/drivers/dri/intel/intel_screen.c index 5c95c72732e..64a21a147f0 100644 --- a/src/mesa/drivers/dri/intel/intel_screen.c +++ b/src/mesa/drivers/dri/intel/intel_screen.c @@ -25,6 +25,7 @@ * **************************************************************************/ +#include #include "main/glheader.h" #include "main/context.h" #include "main/framebuffer.h" @@ -302,7 +303,8 @@ intel_get_param(__DRIscreen *psp, int param, int *value) ret = drmCommandWriteRead(psp->fd, DRM_I915_GETPARAM, &gp, sizeof(gp)); if (ret) { - _mesa_warning(NULL, "drm_i915_getparam: %d", ret); + if (ret != -EINVAL) + _mesa_warning(NULL, "drm_i915_getparam: %d", ret); return GL_FALSE; }