Commit 3cd7e6814cea ("kmstest.py: Fix CRTC disabling") modified the CRC test to use the kmstest.AtomicRequest class, but failed to pass the correct argument to the constructor. Fix it. Fixes: 3cd7e6814cea ("kmstest.py: Fix CRTC disabling") Signed-off-by: Laurent Pinchart <laurent.pinchart@xxxxxxxxxxxxxxxx> --- tests/kms-test-crc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/kms-test-crc.py b/tests/kms-test-crc.py index d936d1d4fb90..dcdfcd4abb71 100755 --- a/tests/kms-test-crc.py +++ b/tests/kms-test-crc.py @@ -58,7 +58,7 @@ class CRCTest(kmstest.KMSTest): self.fail("atomic mode set failed with %d" % ret) continue - req = kmstest.AtomicRequest(self.card) + req = kmstest.AtomicRequest(self) offset = 100 for plane in planes: -- Regards, Laurent Pinchart