diff mbox series

[1/4] drm/tiny: ili9225: drop driver owner assignment

Message ID 20240327174842.519758-1-krzysztof.kozlowski@linaro.org (mailing list archive)
State New, archived
Headers show
Series [1/4] drm/tiny: ili9225: drop driver owner assignment | expand

Commit Message

Krzysztof Kozlowski March 27, 2024, 5:48 p.m. UTC
Core in spi_register_driver() already sets the .owner, so driver
does not need to.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 drivers/gpu/drm/tiny/ili9225.c | 1 -
 1 file changed, 1 deletion(-)

Comments

David Lechner March 27, 2024, 11:14 p.m. UTC | #1
On 3/27/24 12:48 PM, Krzysztof Kozlowski wrote:
> Core in spi_register_driver() already sets the .owner, so driver
> does not need to.
>
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---

Acked-by: David Lechner <david@lechnology.com>
Krzysztof Kozlowski April 24, 2024, 6:45 a.m. UTC | #2
On 27/03/2024 18:48, Krzysztof Kozlowski wrote:
> Core in spi_register_driver() already sets the .owner, so driver
> does not need to.
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
>  drivers/gpu/drm/tiny/ili9225.c | 1 -
>  1 file changed, 1 deletion(-)

It has been almost a month. Any comments on this patchset? Can this be
picked up?

Best regards,
Krzysztof
Noralf Trønnes April 26, 2024, 2:08 p.m. UTC | #3
On 4/24/24 08:45, Krzysztof Kozlowski wrote:
> On 27/03/2024 18:48, Krzysztof Kozlowski wrote:
>> Core in spi_register_driver() already sets the .owner, so driver
>> does not need to.
>>
>> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
>> ---
>>  drivers/gpu/drm/tiny/ili9225.c | 1 -
>>  1 file changed, 1 deletion(-)
> 
> It has been almost a month. Any comments on this patchset? Can this be
> picked up?
> 

Thanks for cleaning up, patches applied to drm-misc-next.

Noralf.
diff mbox series

Patch

diff --git a/drivers/gpu/drm/tiny/ili9225.c b/drivers/gpu/drm/tiny/ili9225.c
index dd8b0a181be9..eb1213352bce 100644
--- a/drivers/gpu/drm/tiny/ili9225.c
+++ b/drivers/gpu/drm/tiny/ili9225.c
@@ -447,7 +447,6 @@  static void ili9225_shutdown(struct spi_device *spi)
 static struct spi_driver ili9225_spi_driver = {
 	.driver = {
 		.name = "ili9225",
-		.owner = THIS_MODULE,
 		.of_match_table = ili9225_of_match,
 	},
 	.id_table = ili9225_id,