diff options
author | Alexander Gordeev <agordeev@redhat.com> | 2014-08-18 02:01:50 -0400 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2014-09-16 12:09:56 -0400 |
commit | 6b73352134d9cd6ff1af1962799b738b4de604be (patch) | |
tree | 42c407873affc747db9f67d66a7be9eeddf74d37 /drivers/scsi/csiostor/csio_hw.h | |
parent | c6b9bad280674a51f42929fc1fe6964ac3528dc8 (diff) |
csiostor: Use pci_enable_msix_range() instead of pci_enable_msix()
As result of deprecation of MSI-X/MSI enablement functions
pci_enable_msix() and pci_enable_msi_block() all drivers
using these two interfaces need to be updated to use the
new pci_enable_msi_range() or pci_enable_msi_exact()
and pci_enable_msix_range() or pci_enable_msix_exact()
interfaces.
Signed-off-by: Alexander Gordeev <agordeev@redhat.com>
Reviewed-by: Tomas Henzl <thenzl@redhat.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'drivers/scsi/csiostor/csio_hw.h')
-rw-r--r-- | drivers/scsi/csiostor/csio_hw.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/csiostor/csio_hw.h b/drivers/scsi/csiostor/csio_hw.h index 49b1daa4476e..5db2d85195b1 100644 --- a/drivers/scsi/csiostor/csio_hw.h +++ b/drivers/scsi/csiostor/csio_hw.h | |||
@@ -94,7 +94,7 @@ enum { | |||
94 | }; | 94 | }; |
95 | 95 | ||
96 | struct csio_msix_entries { | 96 | struct csio_msix_entries { |
97 | unsigned short vector; /* Vector assigned by pci_enable_msix */ | 97 | unsigned short vector; /* Assigned MSI-X vector */ |
98 | void *dev_id; /* Priv object associated w/ this msix*/ | 98 | void *dev_id; /* Priv object associated w/ this msix*/ |
99 | char desc[24]; /* Description of this vector */ | 99 | char desc[24]; /* Description of this vector */ |
100 | }; | 100 | }; |