diff options
author | Krzysztof Kozlowski <[email protected]> | 2024-04-03 16:16:55 +0200 |
---|---|---|
committer | Ulf Hansson <[email protected]> | 2024-04-04 11:09:12 +0200 |
commit | 2430127074197d38c21b77c2e2c42e51a125f580 (patch) | |
tree | dc78648e062f5f6bc38cadda2b94f646587c72d7 | |
parent | 782bfc1128713ee0f7ae1139d04ba15fecff59e5 (diff) |
wifi: mwifiex: drop driver owner initialization
Core in sdio_register_driver() already sets the .owner, so driver does
not need to.
Signed-off-by: Krzysztof Kozlowski <[email protected]>
Acked-by: Kalle Valo <[email protected]>
Reviewed-by: Francesco Dolcini <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Ulf Hansson <[email protected]>
-rw-r--r-- | drivers/net/wireless/marvell/mwifiex/sdio.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/net/wireless/marvell/mwifiex/sdio.c b/drivers/net/wireless/marvell/mwifiex/sdio.c index 75f53c2f1e1f..2a6bfef23ade 100644 --- a/drivers/net/wireless/marvell/mwifiex/sdio.c +++ b/drivers/net/wireless/marvell/mwifiex/sdio.c @@ -979,7 +979,6 @@ static struct sdio_driver mwifiex_sdio = { .probe = mwifiex_sdio_probe, .remove = mwifiex_sdio_remove, .drv = { - .owner = THIS_MODULE, .coredump = mwifiex_sdio_coredump, .pm = &mwifiex_sdio_pm_ops, } |