diff options
author | Thomas Hellstrom <thellstrom@vmware.com> | 2017-03-27 07:06:05 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-04-12 06:41:10 -0400 |
commit | 28c84df739e3ac2bdb7898d6b5f92aa72330a423 (patch) | |
tree | bca7ce6aaa40cf4508630eb0261bdbca3a9a64f6 /drivers/gpu/drm | |
parent | b116797b81e55c6ac9ddcbf92bcd662648273045 (diff) |
drm/vmwgfx: Remove getparam error message
commit 53e16798b0864464c5444a204e1bb93ae246c429 upstream.
The mesa winsys sometimes uses unimplemented parameter requests to
check for features. Remove the error message to avoid bloating the
kernel log.
Signed-off-by: Thomas Hellstrom <thellstrom@vmware.com>
Reviewed-by: Brian Paul <brianp@vmware.com>
Reviewed-by: Sinclair Yeh <syeh@vmware.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/gpu/drm')
-rw-r--r-- | drivers/gpu/drm/vmwgfx/vmwgfx_ioctl.c | 2 |
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, | |||
114 | param->value = dev_priv->has_dx; | 114 | param->value = dev_priv->has_dx; |
115 | break; | 115 | break; |
116 | default: | 116 | default: |
117 | DRM_ERROR("Illegal vmwgfx get param request: %d\n", | ||
118 | param->param); | ||
119 | return -EINVAL; | 117 | return -EINVAL; |
120 | } | 118 | } |
121 | 119 | ||