diff options
author | Krzysztof Kozlowski <[email protected]> | 2024-03-27 18:49:20 +0100 |
---|---|---|
committer | Martin K. Petersen <[email protected]> | 2024-04-05 20:52:49 -0400 |
commit | ca0e1b9afbc93e1c189e420030d8bd489972a2a4 (patch) | |
tree | 76940f620218a21212e653b7336bab45f4c26aa5 | |
parent | 0ff10cb7f81818120b15ddd5d24e09c4af31e04d (diff) |
scsi: csiostor: Drop driver owner assignment
PCI core in pci_register_driver() already sets the .owner, so driver does
not need to.
Signed-off-by: Krzysztof Kozlowski <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Martin K. Petersen <[email protected]>
-rw-r--r-- | drivers/scsi/csiostor/csio_init.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/scsi/csiostor/csio_init.c b/drivers/scsi/csiostor/csio_init.c index d649b7a2a879..9a3f2ed050bd 100644 --- a/drivers/scsi/csiostor/csio_init.c +++ b/drivers/scsi/csiostor/csio_init.c @@ -1185,9 +1185,6 @@ static struct pci_error_handlers csio_err_handler = { static struct pci_driver csio_pci_driver = { .name = KBUILD_MODNAME, - .driver = { - .owner = THIS_MODULE, - }, .id_table = csio_pci_tbl, .probe = csio_probe_one, .remove = csio_remove_one, |