diff options
Diffstat (limited to 'drivers/scsi/megaraid/megaraid_sas_base.c')
-rw-r--r-- | drivers/scsi/megaraid/megaraid_sas_base.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/scsi/megaraid/megaraid_sas_base.c b/drivers/scsi/megaraid/megaraid_sas_base.c index 9d53540207ec..7c90d57b867e 100644 --- a/drivers/scsi/megaraid/megaraid_sas_base.c +++ b/drivers/scsi/megaraid/megaraid_sas_base.c | |||
@@ -3984,12 +3984,12 @@ static int megasas_probe_one(struct pci_dev *pdev, | |||
3984 | if (reset_devices) { | 3984 | if (reset_devices) { |
3985 | pos = pci_find_capability(pdev, PCI_CAP_ID_MSIX); | 3985 | pos = pci_find_capability(pdev, PCI_CAP_ID_MSIX); |
3986 | if (pos) { | 3986 | if (pos) { |
3987 | pci_read_config_word(pdev, msi_control_reg(pos), | 3987 | pci_read_config_word(pdev, pos + PCI_MSIX_FLAGS, |
3988 | &control); | 3988 | &control); |
3989 | if (control & PCI_MSIX_FLAGS_ENABLE) { | 3989 | if (control & PCI_MSIX_FLAGS_ENABLE) { |
3990 | dev_info(&pdev->dev, "resetting MSI-X\n"); | 3990 | dev_info(&pdev->dev, "resetting MSI-X\n"); |
3991 | pci_write_config_word(pdev, | 3991 | pci_write_config_word(pdev, |
3992 | msi_control_reg(pos), | 3992 | pos + PCI_MSIX_FLAGS, |
3993 | control & | 3993 | control & |
3994 | ~PCI_MSIX_FLAGS_ENABLE); | 3994 | ~PCI_MSIX_FLAGS_ENABLE); |
3995 | } | 3995 | } |