diff options
author | Krzysztof Kozlowski <[email protected]> | 2024-03-27 18:48:42 +0100 |
---|---|---|
committer | Noralf Trønnes <[email protected]> | 2024-04-26 16:03:19 +0200 |
commit | 5284e4202aa0dc68bc9e903dd666a36e14704791 (patch) | |
tree | 464d187ea07d6091ccbcb6975530fa901fe49f73 | |
parent | 9745097ca730478e242e7c46538b3e37cc62f38e (diff) |
drm/tiny: st7586: 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]
-rw-r--r-- | drivers/gpu/drm/tiny/st7586.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/gpu/drm/tiny/st7586.c b/drivers/gpu/drm/tiny/st7586.c index 7336fa1ddaed..c4ad8340180e 100644 --- a/drivers/gpu/drm/tiny/st7586.c +++ b/drivers/gpu/drm/tiny/st7586.c @@ -392,7 +392,6 @@ static void st7586_shutdown(struct spi_device *spi) static struct spi_driver st7586_spi_driver = { .driver = { .name = "st7586", - .owner = THIS_MODULE, .of_match_table = st7586_of_match, }, .id_table = st7586_id, |