aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorAlexander Gordeev <agordeev@redhat.com>2013-12-16 03:34:58 -0500
committerBjorn Helgaas <bhelgaas@google.com>2013-12-20 11:45:05 -0500
commit52179dc9edc3b7a2b3bb01cbb1b6c96f6d05fc73 (patch)
treeb331aa42207a68cafce0bb8758a9474022d52f96 /drivers
parent8ec5db6b20c860ddd1311c794b38c98ce86ac7ae (diff)
PCI/MSI: Make pci_enable_msi/msix() 'nvec' argument type as int
Make pci_enable_msi_block(), pci_enable_msi_block_auto() and pci_enable_msix() consistent with regard to the type of 'nvec' argument. Signed-off-by: Alexander Gordeev <agordeev@redhat.com> Signed-off-by: Bjorn Helgaas <bhelgaas@google.com> Reviewed-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/pci/msi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/pci/msi.c b/drivers/pci/msi.c
index a581381e02f2..ce0d4eb91a22 100644
--- a/drivers/pci/msi.c
+++ b/drivers/pci/msi.c
@@ -855,7 +855,7 @@ static int pci_msi_check_device(struct pci_dev *dev, int nvec, int type)
855 * updates the @dev's irq member to the lowest new interrupt number; the 855 * updates the @dev's irq member to the lowest new interrupt number; the
856 * other interrupt numbers allocated to this device are consecutive. 856 * other interrupt numbers allocated to this device are consecutive.
857 */ 857 */
858int pci_enable_msi_block(struct pci_dev *dev, unsigned int nvec) 858int pci_enable_msi_block(struct pci_dev *dev, int nvec)
859{ 859{
860 int status, maxvec; 860 int status, maxvec;
861 u16 msgctl; 861 u16 msgctl;
@@ -886,7 +886,7 @@ int pci_enable_msi_block(struct pci_dev *dev, unsigned int nvec)
886} 886}
887EXPORT_SYMBOL(pci_enable_msi_block); 887EXPORT_SYMBOL(pci_enable_msi_block);
888 888
889int pci_enable_msi_block_auto(struct pci_dev *dev, unsigned int *maxvec) 889int pci_enable_msi_block_auto(struct pci_dev *dev, int *maxvec)
890{ 890{
891 int ret, nvec; 891 int ret, nvec;
892 u16 msgctl; 892 u16 msgctl;