diff options
author | Roland Dreier <rolandd@cisco.com> | 2005-10-18 21:07:07 (GMT) |
---|---|---|
committer | Roland Dreier <rolandd@cisco.com> | 2005-10-18 21:07:07 (GMT) |
commit | d476306f1cc9156ce4b42586aacce70a356ef656 (patch) | |
tree | 045da3b196f276bbe83cd25f08956578d5e918f6 /drivers/infiniband | |
parent | c6f5cb7be0ab478e0618e3c2c6ada27f56d1e7fb (diff) | |
download | linux-fsl-qoriq-d476306f1cc9156ce4b42586aacce70a356ef656.tar.xz |
[IB] mthca: Add struct pci_driver.owner field
Set mthca_driver.owner to THIS_MODULE.
Signed-off-by: Roland Dreier <rolandd@cisco.com>
Diffstat (limited to 'drivers/infiniband')
-rw-r--r-- | drivers/infiniband/hw/mthca/mthca_main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/infiniband/hw/mthca/mthca_main.c b/drivers/infiniband/hw/mthca/mthca_main.c index 7c35abe..883d1e5 100644 --- a/drivers/infiniband/hw/mthca/mthca_main.c +++ b/drivers/infiniband/hw/mthca/mthca_main.c @@ -1196,6 +1196,7 @@ MODULE_DEVICE_TABLE(pci, mthca_pci_table); static struct pci_driver mthca_driver = { .name = DRV_NAME, + .owner = THIS_MODULE, .id_table = mthca_pci_table, .probe = mthca_init_one, .remove = __devexit_p(mthca_remove_one) |