4.20-stable review patch.  If anyone has any objections, please let me know.

------------------

From: Eugeniy Paltsev <[email protected]>

commit 32e932e37e6b6e13b66add307192c7ddd40a781d upstream.

UDL doesn't support vblank functionality so we don't need to
initialize vblank here (we are able to send page flip
completion events even without vblank initialization)

Moreover current drm_vblank_init call with num_crtcs > 0 causes
sending DRM_EVENT_FLIP_COMPLETE event with zero timestamp every
time. This breaks userspace apps (for example weston) which
relies on timestamp value.

Cc: [email protected]
Signed-off-by: Eugeniy Paltsev <[email protected]>
Signed-off-by: Daniel Vetter <[email protected]>
Link: 
https://patchwork.freedesktop.org/patch/msgid/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>

---
 drivers/gpu/drm/udl/udl_main.c |    7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

--- a/drivers/gpu/drm/udl/udl_main.c
+++ b/drivers/gpu/drm/udl/udl_main.c
@@ -350,15 +350,10 @@ int udl_driver_load(struct drm_device *d
        if (ret)
                goto err;
 
-       ret = drm_vblank_init(dev, 1);
-       if (ret)
-               goto err_fb;
-
        drm_kms_helper_poll_init(dev);
 
        return 0;
-err_fb:
-       udl_fbdev_cleanup(dev);
+
 err:
        if (udl->urbs.count)
                udl_free_urb_list(dev);


Reply via email to