aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWoody Suwalski <terraluna977@gmail.com>2018-01-17 03:07:47 -0500
committerThomas Hellstrom <thellstrom@vmware.com>2018-01-17 03:09:27 -0500
commit2b0bc68cccc70f1a61b90b49012e917eea4cb251 (patch)
tree5b1f1efc2751df15dda293a189c3a55218dc6736
parent0d9cac0ca0429830c40fe1a4e50e60f6221fd7b6 (diff)
drm/vmwgfx: Fix a boot time warning
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>
-rw-r--r--drivers/gpu/drm/vmwgfx/vmwgfx_kms.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_kms.c b/drivers/gpu/drm/vmwgfx/vmwgfx_kms.c
index 641294aef165..fcd58145d0da 100644
--- a/drivers/gpu/drm/vmwgfx/vmwgfx_kms.c
+++ b/drivers/gpu/drm/vmwgfx/vmwgfx_kms.c
@@ -1863,7 +1863,7 @@ u32 vmw_get_vblank_counter(struct drm_device *dev, unsigned int pipe)
1863 */ 1863 */
1864int vmw_enable_vblank(struct drm_device *dev, unsigned int pipe) 1864int vmw_enable_vblank(struct drm_device *dev, unsigned int pipe)
1865{ 1865{
1866 return -ENOSYS; 1866 return -EINVAL;
1867} 1867}
1868 1868
1869/** 1869/**