Re: [PATCH 1/3] drm/tests: Fix kunit_release_action ctx argument

2023-09-30 Thread Maira Canal
Hi Arthur, On 9/27/23 19:52, Arthur Grillo wrote: On 27/09/23 19:47, Maira Canal wrote: Hi Arthur, On 9/20/23 03:11, Arthur Grillo wrote: 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 r

Re: [PATCH 1/3] drm/tests: Fix kunit_release_action ctx argument

2023-09-27 Thread Arthur Grillo
On 27/09/23 19:47, Maira Canal wrote: > Hi Arthur, > > On 9/20/23 03:11, Arthur Grillo wrote: >> 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.

Re: [PATCH 1/3] drm/tests: Fix kunit_release_action ctx argument

2023-09-27 Thread Maira Canal
Hi Arthur, On 9/20/23 03:11, Arthur Grillo wrote: 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

Re: [PATCH 1/3] drm/tests: Fix kunit_release_action ctx argument

2023-09-19 Thread Maxime Ripard
On Wed, 20 Sep 2023 03:11:36 -0300, Arthur Grillo wrote: > 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: helpe