diff options
author | Randy Dunlap <rdunlap@infradead.org> | 2016-12-28 08:25:04 -0800 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2017-01-11 15:11:28 -0600 |
commit | dadf17334f3820e2f8c561011706b6fb99bf9860 (patch) | |
tree | 68ce6af18b4f4bfb3ff0f1cc1d426c8626eb0294 /drivers/pci/msi.c | |
parent | 7ce7d89f48834cefece7804d38fc5d85382edf77 (diff) | |
download | linux-dadf17334f3820e2f8c561011706b6fb99bf9860.tar.bz2 |
PCI/MSI: Fix msi_capability_init() kernel-doc warnings
Fix kernel-doc warnings in pci/msi.c:
..//drivers/pci/msi.c:623: warning: No description found for parameter 'affd'
..//drivers/pci/msi.c:623: warning: Excess function parameter 'affinity' description in 'msi_capability_init'
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'drivers/pci/msi.c')
-rw-r--r-- | drivers/pci/msi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/msi.c b/drivers/pci/msi.c index 50c5003295ca..ca9112afd53a 100644 --- a/drivers/pci/msi.c +++ b/drivers/pci/msi.c @@ -610,7 +610,7 @@ static int msi_verify_entries(struct pci_dev *dev) * msi_capability_init - configure device's MSI capability structure * @dev: pointer to the pci_dev data structure of MSI device function * @nvec: number of interrupts to allocate - * @affinity: flag to indicate cpu irq affinity mask should be set + * @affd: description of automatic irq affinity assignments (may be %NULL) * * Setup the MSI capability structure of the device with the requested * number of interrupts. A return value of zero indicates the successful |