]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
drm/vmwgfx: Fix a boot time warning
authorWoody Suwalski <terraluna977@gmail.com>
Wed, 17 Jan 2018 08:07:47 +0000 (09:07 +0100)
committerThomas Hellstrom <thellstrom@vmware.com>
Wed, 17 Jan 2018 08:09:27 +0000 (09:09 +0100)
The 4.15 vmwgfx driver shows a warning during boot.
It is caused by a mismatch between the result of vmw_enable_vblank()
and what the drm_atomic_helper expects.

Signed-off by: Woody Suwalski <terraluna977@gmail.com>
Signed-off-by: Thomas Hellstrom <thellstrom@vmware.com>
drivers/gpu/drm/vmwgfx/vmwgfx_kms.c

index 641294aef1652e1d8599016090aacd4bb33364b0..fcd58145d0dacede735bc53dc4fce40c8bb9063c 100644 (file)
@@ -1863,7 +1863,7 @@ u32 vmw_get_vblank_counter(struct drm_device *dev, unsigned int pipe)
  */
 int vmw_enable_vblank(struct drm_device *dev, unsigned int pipe)
 {
-       return -ENOSYS;
+       return -EINVAL;
 }
 
 /**