diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2018-06-20 05:56:11 +0300 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2018-06-20 13:14:22 +0300 |
commit | af1fd2f1173b16af43d8f630975b1beeaf641f86 (patch) | |
tree | 0b830a1156a836e151f8d296696591869f119d7a | |
parent | 33246d9b5fb0347aabd62caac1da03440f9e1634 (diff) |
py: sync: Fix event handling
Fancy event handling was dropped in commit 95de32aa7fbb ("py: drop the
fancy event handling"). Python tests were updated, but one commit call
got forgotten in the sync.py test. Fix it.
Fixes: 95de32aa7fbb ("py: drop the fancy event handling")
Reported-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
-rwxr-xr-x | py/tests/sync.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/tests/sync.py b/py/tests/sync.py index e394c8d..605dbcf 100755 --- a/py/tests/sync.py +++ b/py/tests/sync.py @@ -195,7 +195,7 @@ def main(argv): 'CRTC_W': fb.width, 'CRTC_H': fb.height, }) - ret = req.commit(flip_handler, allow_modeset = True) + ret = req.commit(allow_modeset = True) if ret < 0: raise RuntimeError('Atomic mode set failed with %d' % ret) |