diff options
| author | Krzysztof Kozlowski <[email protected]> | 2024-03-27 18:48:39 +0100 |
|---|---|---|
| committer | Noralf Trønnes <[email protected]> | 2024-04-26 16:02:25 +0200 |
| commit | 6898837d43355c182ab5613bf2d2981d345d30db (patch) | |
| tree | ff918ceaf7f85c855c125709320c5c88aa308540 /drivers/gpu/drm/tiny/ili9225.c | |
| parent | 2e3f08a1ac99cb9a19a5cb151593d4f9df5cc6a7 (diff) | |
drm/tiny: ili9225: drop driver owner assignment
Core in spi_register_driver() already sets the .owner, so driver
does not need to.
Signed-off-by: Krzysztof Kozlowski <[email protected]>
Acked-by: David Lechner <[email protected]>
Signed-off-by: Noralf Trønnes <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
Diffstat (limited to 'drivers/gpu/drm/tiny/ili9225.c')
| -rw-r--r-- | drivers/gpu/drm/tiny/ili9225.c | 1 |
1 files changed, 0 insertions, 1 deletions
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, |