Преглед на файлове

disp: msm: queue vblank work on event thread

This change queues vblank work to event thread rather than
the display thread. This allows vblank events to be processed
without potentially being delayed by crtc commit being processed.

Change-Id: I9cbf9b3de646716e4698af9f338a7140346b65fd
Signed-off-by: Samantha Tran <[email protected]>
Samantha Tran преди 5 години
родител
ревизия
bf06be4737
променени са 1 файла, в които са добавени 2 реда и са изтрити 1 реда
  1. 2 1
      msm/msm_drv.c

+ 2 - 1
msm/msm_drv.c

@@ -362,7 +362,8 @@ static int vblank_ctrl_queue_work(struct msm_drm_private *priv,
 	cur_work->enable = enable;
 	cur_work->priv = priv;
 
-	kthread_queue_work(&priv->disp_thread[crtc_id].worker, &cur_work->work);
+	kthread_queue_work(&priv->event_thread[crtc_id].worker,
+						&cur_work->work);
 
 	return 0;
 }