diff options
author | Stephen Hemminger <sthemmin@microsoft.com> | 2016-10-23 12:32:34 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2016-10-26 06:05:34 -0400 |
commit | 62c61514191bfe5731b43619b9b1bf4b423beeb0 (patch) | |
tree | 15aeb0bfc15d6092a856b92e0b74b3db2a1f318d | |
parent | 07d9a380680d1c0eb51ef87ff2eab5c994949e69 (diff) |
doc: Add missing parameter for msi_setup
commit 92ca8d20dee2 ("genirq/msi: Switch to new irq spreading")
introduced new parameter to msi_init_setup and but did not update
docbook comments. Fixes 'make htmldocs' warning.
Signed-off-by: Stephen Hemminger <sthemmin@microsoft.com>
Cc: bhelgaas@google.com
Cc: linux-pci@vger.kernel.org
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
-rw-r--r-- | drivers/pci/msi.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/pci/msi.c b/drivers/pci/msi.c index bfdd0744b686..ad70507cfb56 100644 --- a/drivers/pci/msi.c +++ b/drivers/pci/msi.c | |||
@@ -610,6 +610,7 @@ static int msi_verify_entries(struct pci_dev *dev) | |||
610 | * msi_capability_init - configure device's MSI capability structure | 610 | * msi_capability_init - configure device's MSI capability structure |
611 | * @dev: pointer to the pci_dev data structure of MSI device function | 611 | * @dev: pointer to the pci_dev data structure of MSI device function |
612 | * @nvec: number of interrupts to allocate | 612 | * @nvec: number of interrupts to allocate |
613 | * @affinity: flag to indicate cpu irq affinity mask should be set | ||
613 | * | 614 | * |
614 | * Setup the MSI capability structure of the device with the requested | 615 | * Setup the MSI capability structure of the device with the requested |
615 | * number of interrupts. A return value of zero indicates the successful | 616 | * number of interrupts. A return value of zero indicates the successful |
@@ -752,6 +753,7 @@ static void msix_program_entries(struct pci_dev *dev, | |||
752 | * @dev: pointer to the pci_dev data structure of MSI-X device function | 753 | * @dev: pointer to the pci_dev data structure of MSI-X device function |
753 | * @entries: pointer to an array of struct msix_entry entries | 754 | * @entries: pointer to an array of struct msix_entry entries |
754 | * @nvec: number of @entries | 755 | * @nvec: number of @entries |
756 | * @affinity: flag to indicate cpu irq affinity mask should be set | ||
755 | * | 757 | * |
756 | * Setup the MSI-X capability structure of device function with a | 758 | * Setup the MSI-X capability structure of device function with a |
757 | * single MSI-X irq. A return of zero indicates the successful setup of | 759 | * single MSI-X irq. A return of zero indicates the successful setup of |