Commit 0a21ef1e authored by James Bottomley's avatar James Bottomley

[SCSI] qla2xxx: fix compile error caused by pci_dev.owner move

Signed-off-by: default avatarJames Bottomley <James.Bottomley@SteelEye.com>
parent 7f23e146
...@@ -2611,7 +2611,9 @@ qla2xxx_remove_one(struct pci_dev *pdev) ...@@ -2611,7 +2611,9 @@ qla2xxx_remove_one(struct pci_dev *pdev)
static struct pci_driver qla2xxx_pci_driver = { static struct pci_driver qla2xxx_pci_driver = {
.name = "qla2xxx", .name = "qla2xxx",
.owner = THIS_MODULE, .driver = {
.owner = THIS_MODULE,
},
.id_table = qla2xxx_pci_tbl, .id_table = qla2xxx_pci_tbl,
.probe = qla2xxx_probe_one, .probe = qla2xxx_probe_one,
.remove = __devexit_p(qla2xxx_remove_one), .remove = __devexit_p(qla2xxx_remove_one),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment