mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-18 19:05:39 +00:00
drm/tests: modes: Remove call to drm_kunit_helper_free_device()
Calling drm_kunit_helper_free_device() to clean up the resources allocated by drm_kunit_helper_alloc_device() is now optional and not needed in most cases. Remove it. Reviewed-by: Javier Martinez Canillas <javierm@redhat.com> Reviewed-by: Maíra Canal <mairacanal@riseup.net> Link: https://lore.kernel.org/r/20230728-kms-kunit-actions-rework-v3-3-952565ccccfe@kernel.org Signed-off-by: Maxime Ripard <mripard@kernel.org>
This commit is contained in:
parent
4c94013940
commit
d2efd0fa69
@ -36,13 +36,6 @@ static int drm_test_modes_init(struct kunit *test)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void drm_test_modes_exit(struct kunit *test)
|
||||
{
|
||||
struct drm_test_modes_priv *priv = test->priv;
|
||||
|
||||
drm_kunit_helper_free_device(test, priv->dev);
|
||||
}
|
||||
|
||||
static void drm_test_modes_analog_tv_ntsc_480i(struct kunit *test)
|
||||
{
|
||||
struct drm_test_modes_priv *priv = test->priv;
|
||||
@ -148,7 +141,6 @@ static struct kunit_case drm_modes_analog_tv_tests[] = {
|
||||
static struct kunit_suite drm_modes_analog_tv_test_suite = {
|
||||
.name = "drm_modes_analog_tv",
|
||||
.init = drm_test_modes_init,
|
||||
.exit = drm_test_modes_exit,
|
||||
.test_cases = drm_modes_analog_tv_tests,
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user