From fe8417bc9f9260e77a0cfe23e3af3fe806066d08 Mon Sep 17 00:00:00 2001 From: Tomi Valkeinen Date: Mon, 11 Dec 2023 10:32:16 +0200 Subject: [PATCH] cam.py: Fix blob --- utils/cam.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/cam.py b/utils/cam.py index 256c79f..5a267df 100755 --- a/utils/cam.py +++ b/utils/cam.py @@ -61,7 +61,7 @@ crtc = res.reserve_crtc(conn) card.disable_planes() mode = conn.get_default_mode() - modeb = mode.to_blob(card) + modeb = kms.Blob(card, mode) if args.tx: net_tx = NetTX()