diff options
author | Krzysztof Kozlowski <[email protected]> | 2024-04-03 16:16:53 +0200 |
---|---|---|
committer | Ulf Hansson <[email protected]> | 2024-04-04 11:09:12 +0200 |
commit | 91fe9ede3a9997f4c128de45e7545ee0f2e2c94c (patch) | |
tree | 489c904ab03e433c3d9f804022484f341ec8416a | |
parent | 04792c1e67391e1a18cb7747d221c9247cb40b68 (diff) |
wifi: ath10k: sdio: 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: Jeff Johnson <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Ulf Hansson <[email protected]>
-rw-r--r-- | drivers/net/wireless/ath/ath10k/sdio.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath10k/sdio.c b/drivers/net/wireless/ath/ath10k/sdio.c index 1acb9fba9a8e..cddd9e3010ee 100644 --- a/drivers/net/wireless/ath/ath10k/sdio.c +++ b/drivers/net/wireless/ath/ath10k/sdio.c @@ -2667,7 +2667,6 @@ static struct sdio_driver ath10k_sdio_driver = { .probe = ath10k_sdio_probe, .remove = ath10k_sdio_remove, .drv = { - .owner = THIS_MODULE, .pm = ATH10K_SDIO_PM_OPS, }, }; |