aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArthur Grillo <arthurgrillo@riseup.net>2023-09-20 03:11:36 -0300
committerMaíra Canal <mairacanal@riseup.net>2023-09-30 12:13:05 -0300
commit885291ab687e83085b9f450ec1efaed44a8a7ab6 (patch)
tree197c9c801fb51a8298ea04e587b4ad5469228002
parent645d694559cab36fe6a57c717efcfa27d9321396 (diff)
downloadlinux-885291ab687e83085b9f450ec1efaed44a8a7ab6.tar.gz
drm/tests: Fix kunit_release_action ctx argument
The kunit_action_platform_driver_unregister is added with &fake_platform_driver as ctx, but the kunit_release_action is called pdev as ctx. Fix that by replacing it with &fake_platform_driver. Fixes: 4f2b0b583baa ("drm/tests: helpers: Switch to kunit actions") Signed-off-by: Arthur Grillo <arthurgrillo@riseup.net> Reviewed-by: Maíra Canal <mairacanal@riseup.net> Acked-by: Maxime Ripard <mripard@kernel.org> Signed-off-by: Maíra Canal <mairacanal@riseup.net> Link: https://patchwork.freedesktop.org/patch/msgid/20230920-kunit-kasan-fixes-v1-1-1a0fc261832d@riseup.net
-rw-r--r--drivers/gpu/drm/tests/drm_kunit_helpers.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/tests/drm_kunit_helpers.c b/drivers/gpu/drm/tests/drm_kunit_helpers.c
index c1dfbfcaa0001f..bccb33b900f390 100644
--- a/drivers/gpu/drm/tests/drm_kunit_helpers.c
+++ b/drivers/gpu/drm/tests/drm_kunit_helpers.c
@@ -118,7 +118,7 @@ void drm_kunit_helper_free_device(struct kunit *test, struct device *dev)
kunit_release_action(test,
kunit_action_platform_driver_unregister,
- pdev);
+ &fake_platform_driver);
}
EXPORT_SYMBOL_GPL(drm_kunit_helper_free_device);