summaryrefslogtreecommitdiff
path: root/py/tests
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2018-06-20 05:56:12 +0300
committerTomi Valkeinen <tomi.valkeinen@ti.com>2018-06-20 13:14:22 +0300
commit9ebe93202065c48d63287157e507283d663b9c83 (patch)
tree77814c5db23aab624545d9efd11809a757fe418f /py/tests
parentaf1fd2f1173b16af43d8f630975b1beeaf641f86 (diff)
py: sync: Moded to blob conversion method is called to_blob()
There's no blob() method on mode objects, use to_blob(). Fixes: 66f161d0032e ("py: Add in fence test using swsync") 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>
Diffstat (limited to 'py/tests')
-rwxr-xr-xpy/tests/sync.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/tests/sync.py b/py/tests/sync.py
index 605dbcf..935d86e 100755
--- a/py/tests/sync.py
+++ b/py/tests/sync.py
@@ -178,7 +178,7 @@ def main(argv):
fb = flip_handler.fb1
pykms.draw_color_bar(fb, fb.width - bar_width - bar_speed, bar_speed, bar_width)
- mode_blob = mode.blob(card)
+ mode_blob = mode.to_blob(card)
req = pykms.AtomicReq(card)
req.add(conn, 'CRTC_ID', crtc.id)