summaryrefslogtreecommitdiffstats
path: root/drivers/gpu
diff options
context:
space:
mode:
authorThomas Hellstrom <thellstrom@vmware.com>2017-03-27 13:06:05 +0200
committerThomas Hellstrom <thellstrom@vmware.com>2017-03-30 11:43:40 +0200
commit53e16798b0864464c5444a204e1bb93ae246c429 (patch)
tree14485af215a92ce592b96268ce9b9746cd968190 /drivers/gpu
parent3ce7803cf3a7bc52c0eb9f516de8b72a0305ad57 (diff)
downloadlinux-53e16798b0864464c5444a204e1bb93ae246c429.tar.gz
linux-53e16798b0864464c5444a204e1bb93ae246c429.tar.bz2
linux-53e16798b0864464c5444a204e1bb93ae246c429.zip
drm/vmwgfx: Remove getparam error message
The mesa winsys sometimes uses unimplemented parameter requests to check for features. Remove the error message to avoid bloating the kernel log. Cc: <stable@vger.kernel.org> Signed-off-by: Thomas Hellstrom <thellstrom@vmware.com> Reviewed-by: Brian Paul <brianp@vmware.com> Reviewed-by: Sinclair Yeh <syeh@vmware.com>
Diffstat (limited to 'drivers/gpu')
-rw-r--r--drivers/gpu/drm/vmwgfx/vmwgfx_ioctl.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_ioctl.c b/drivers/gpu/drm/vmwgfx/vmwgfx_ioctl.c
index 1802d0e7fab8..5ec24fd801cd 100644
--- a/drivers/gpu/drm/vmwgfx/vmwgfx_ioctl.c
+++ b/drivers/gpu/drm/vmwgfx/vmwgfx_ioctl.c
@@ -114,8 +114,6 @@ int vmw_getparam_ioctl(struct drm_device *dev, void *data,
param->value = dev_priv->has_dx;
break;
default:
- DRM_ERROR("Illegal vmwgfx get param request: %d\n",
- param->param);
return -EINVAL;
}